Custom Query (981 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 981)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#536 fixed Mac library build fails charlief tstrunk
Description

With revision 14513 many library functions in boinc_api.C were made static, because the old graphics library is not supported anymore. It is however still built in the mac_build script BuildMacBOINC.sh

Obvious fix: update the xcode project and remove graphics_impl, graphics_api, graphics_lib and all the other unneeded files from the project file.

#618 fixed Inconsistency between EMAIL_FROM and EMAIL_FROM_NAME in email.inc davea tstrunk
Description

In WebConfig the documentation states:

EMAIL_FROM 
    'from' address for emails 
EMAIL_FROM_NAME 
    'from' name for emails 

PHP-Mailer respects these options; the internal php mail command does not:
email.inc (49-50):

        if (defined('EMAIL_FROM')) {
            $headers = "From: ". EMAIL_FROM;

should be:

        if ( defined('EMAIL_FROM') && defined('EMAIL_FROM_NAME') ) {
            $headers = "From: ".EMAIL_FROM_NAME."@".EMAIL_FROM;

Otherwise by specifying for example on host: "hostnumber1.com":
EMAIL_FROM - "hostnumber2.de"
EMAIL_FROM_NAME - "correct_username"

a password retrieval mail would be mailed to: hostnumber2.de@…

Revision is 14746

#830 fixed MAC BOINC libraries fail to build charlief tstrunk
Description

buildcurl.sh was not completely updated to c-ares 1.60 and doesn't build automatically anymore.
buildcurl.sh:88-89

cd ../c-ares-1.5.3
sudo make install

should point to c-ares-1.6.0, also sudo is not needed and should therefore be avoided here.
Same in buildcurl.sh:202

sudo rm -Rf /tmp/installed-c-ares/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.