[Bug 1006447] [NEW] backport _SCORE(pad)_ fix (upstream #6651)

2012-05-30 Thread Daniel Convissor
Public bug reported:

SpamAssassin 3.3.2 is the version shipped with Ubuntu Precise/12.04.
Unfortunately, that version has a bug that prevents the _SCORE(0)_
template tag from working.

The SpamAssassin team fixed the bug, but that is slated for their 3.4
release, https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6651.

Can you please backport that fix?  The bug makes analyzing spam messages
difficult for my users.

The version of the spamassassin package I have installed is
3.3.2-2ubuntu1.

Thanks!

** Affects: spamassassin (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to spamassassin in Ubuntu.
https://bugs.launchpad.net/bugs/1006447

Title:
  backport _SCORE(pad)_ fix (upstream #6651)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1006447/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1006447] Re: backport _SCORE(pad)_ fix (upstream #6651)

2012-05-30 Thread Daniel Convissor
[Hmm.  I sent a reply via email.  Didn't show up.  So I'll put it in via
the web form.  Sorry if it shows up twice.]

My system puts the SA score at the beginning of the subject header and
puts the spam messages into a directory.  Then users view the spam box
in subject sorted order in their mail user agents.

Normally, they would see the least spammy messages at the top of the
list and the most spammy messages at the bottom.  This makes it easy to
spot false postivies.  But this bug means the users see the messages
with scores = 10 on top, then somewhere down the index messages with
scores  10 will show up.

If there's a lot of spam, the lower scored messages will be on another
page of the index.  The user may think all of the messages are very
spammy, so use some delete all functionality.  The upshot is the user
may inadvetently delete a false positive.

Example of Expected View:
05.3 | not so bad, maybe false positive
09.8 | getting up there!
12.2 | more spam
19.8 | come hither
... loads of other spam ...

Example of View Caused by Bug:
12.2 | more spam
19.8 | come hither
... loads of other spam ...
5.3 | not so bad, maybe false positive
9.8 | getting up there!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to spamassassin in Ubuntu.
https://bugs.launchpad.net/bugs/1006447

Title:
  backport _SCORE(pad)_ fix (upstream #6651)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1006447/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 316257] Re: [wishlist] merge amd k10 (phemon) support

2010-06-10 Thread Daniel Convissor
Sensors work in Lucid/10.04.

-- 
[wishlist] merge amd  k10 (phemon) support
https://bugs.launchpad.net/bugs/316257
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lm-sensors in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs



[Bug 512167] Re: apache overriding php's error_log setting

2010-01-26 Thread Daniel Convissor
This is happening with both PHP 5.3.2RC1 and a current checkout of the
PHP_5_3 branch.  Both built from source from SVN by me to run as Apache
modules.  Only one of them is installed at a time.

Apache is apache2-mpm-prefork installed via apt-get.

-- 
apache overriding php's error_log setting
https://bugs.launchpad.net/bugs/512167
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 512167] Re: apache overriding php's error_log setting

2010-01-26 Thread Daniel Convissor
Never mind.  Apache didn't have permissions to create the error log.
Here's how to resolve it:

mkdir /var/log/php5
chown root:www-data /var/log/php5
chmod 775 /var/log/php5

Now edit php.ini:
error_log = /var/log/php5/php_errors.log

Sorry for the noise.

** Changed in: apache2 (Ubuntu)
   Status: Incomplete = Invalid

-- 
apache overriding php's error_log setting
https://bugs.launchpad.net/bugs/512167
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 512167] [NEW] apache overriding php's error_log setting

2010-01-24 Thread Daniel Convissor
Public bug reported:

Binary package hint: apache2

# less /etc/php5/php.ini
log_errors = true
error_log = /var/log/php_errors.log

# apache2ctl restart

View phpinfo() output, showing the log_errors and error_log settings are
in place.

Create a PHP script that calls a bogus function then point a web browser
at it.

# less /var/log/php_errors.log

The error isn't in there.

# less /var/log/apache2/error.log

Huh.  The PHP error is in there.  That's not how it's supposed to work.

Running Apache 2.2.12.

** Affects: apache2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
apache overriding php's error_log setting
https://bugs.launchpad.net/bugs/512167
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 500703] Re: apxs failure regarding httpd.conf and LoadModule

2010-01-08 Thread Daniel Convissor
Until this gets fixed, people reading this may want to know how to work
around the issue...

Edit /etc/apache2/mods-available/php5.load and add:

LoadModule php5_module /usr/lib/apache2/modules/libphp5.so

Edit /etc/apache2/mods-available/php5.conf and put in:

IfModule mod_php5.c
  AddType application/x-httpd-php .php
  AddType application/x-httpd-php-source .phps
/IfModule

During the make install step, use the -k flag. The -k flag means “keep
going when some targets can't be made.” The output will still show the
apxs error, but the installation should work. Do keep an eye out for
other compile errors.

make install -k

Then enable the php5 module and restart Apache:

a2enmod php5
/etc/init.d/apache2 restart

-- 
apxs failure regarding httpd.conf and LoadModule 
https://bugs.launchpad.net/bugs/500703
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 500703] [NEW] apxs failure regarding httpd.conf and LoadModule

2009-12-26 Thread Daniel Convissor
Public bug reported:

Binary package hint: apache2

I am building PHP 5.3.2RC1 from source on Ubuntu 9.10 Server Edition.
My apache2-mpm-prefork package is at version 2.2.12-1ubuntu2.1.  The
make install step produces the following output:

Installing PHP SAPI module:   apache2handler
/usr/share/apache2/build/instdso.sh 
SH_LIBTOOL='/usr/share/apr-1.0/build/libtool' libphp5.la 
/usr/lib/apache2/modules
/usr/share/apr-1.0/build/libtool --mode=install cp libphp5.la 
/usr/lib/apache2/modules/
libtool: install: cp .libs/libphp5.so /usr/lib/apache2/modules/libphp5.so
libtool: install: cp .libs/libphp5.lai /usr/lib/apache2/modules/libphp5.la
libtool: install: warning: remember to run `libtool --finish 
/data/wd/phpinstall/libs'
chmod 644 /usr/lib/apache2/modules/libphp5.so
apxs:Error: Activation failed for custom /etc/apache2/httpd.conf file..
apxs:Error: At least one `LoadModule' directive already has to exist..
make: *** [install-sapi] Error 1

Bug 1)  Shouldn't Ubuntu's version of apxs be patched to put directives
in files in the /etc/apache2/mods-available directory just like the php5
package does?

Bug 2)  The workaround of adding a bogus LoadModule line in httpd.conf
(as suggested in http://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=231134) does not change the matter.

** Affects: apache2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
apxs failure regarding httpd.conf and LoadModule 
https://bugs.launchpad.net/bugs/500703
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs