Postfix error after updating to openssl-0.9.8k_5

2009-09-20 Thread Carmel NY
I just install the updated openssl-0.9.8k_3 to openssl-0.9.8k_5 and
then rebuilt postfix-current-2.7.20090712,4 and
cyrus-sasl-saslauthd-2.1.23. Now when Postfix starts, I am receiving
this error message:

Sep 20 08:15:51 scorpio postfix/smtpd[4050]: sql_select option missing
Sep 20 08:15:51 scorpio postfix/smtpd[4050]: auxpropfunc error no mechanism 
available

The /var/log/messages log is also filled with these error messages.
However, I cannot discover anything inappropriately happening with
Postfix. It appears to working correctly and I have no indication of
mail being lost or refused.

I do not use MySQL with Postfix.

cat /usr/local/lib/sasl2/smtpd.conf

# Global Parameters
log_level: 0
pwcheck_method: saslauthd
mech_list: PLAIN LOGIN

This is on a FreeBSD-7.2 system. Has anyone else experienced this
phenomena?

-- 
Carmel
car...@hotmail.com

Your boyfriend takes chocolate from strangers.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: PostFix error

2003-10-30 Thread Julien Gabel
 I have added the above lines to my newly created /etc/periodic.conf
 file.

 For the record, these changes and others are recommended (by printing
 them to the screen during the install phase) specifically by the port
 itself.  If you didn't notice it telling you at the time you
 installed, you can go back and read the file in:
 /usr/ports/mail/postfix/pkg-message

You can also use the pkg_info(1) command :
$ pkg_info -D postfix-2.0.16,1

--
-jg.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PostFix error

2003-10-29 Thread Lowell Gilbert
[EMAIL PROTECTED] writes:

  You forgot to disable the log generation in the daily periodic(8)
  script.  There are some other daily operations you should probably
  disable, too.  Try:
  daily_clean_hoststat_enable=NO
  daily_status_mail_rejects_enable=NO
  daily_status_include_submit_mailq=NO
  daily_submit_queuerun=NO
  [in periodic.conf(5), of course]
 
 I see a periodic folder off of /etc but no periodic.conf file.  Should I
 just create one with the above settings?  Also it seems that there are
 only 2 errors, not 4.

man periodic.conf

 Ahhh I see the error now  In the periodic folder, under daily there is
 a script called 150.clean-hoststat
 
 this file contains the following lines:
 
 if [ -z $(sendmail -bh 21) ]; then
   rc=2
   else
   echo 
   echo Removing stale entries from sendmail host status cache:
   rc=0
   sendmail -bH || rc=1
 
 this is the source of the bh errors.  I will disable this command and see
 if I get any more errors.  Thanks for pointing me in the right direction. 
 Is there a way to do this is PostFix or is this done automatically?

The correct way to do this is with the configuration lines I gave in
the previous message.  The one causing the error you see in the log is
the first of those configuration lines.  

Modifying the periodic scripts directly will work too, but you'll need
to keep merging your changes as you update the system, so it's a less
recommended approach.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PostFix error

2003-10-29 Thread whizkid
  daily_clean_hoststat_enable=NO
  daily_status_mail_rejects_enable=NO
  daily_status_include_submit_mailq=NO
  daily_submit_queuerun=NO
  [in periodic.conf(5), of course]

I have added the above lines to my newly created /etc/periodic.conf file. 
Thanks for all the help.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PostFix error

2003-10-29 Thread Lowell Gilbert
[EMAIL PROTECTED] writes:

   daily_clean_hoststat_enable=NO
   daily_status_mail_rejects_enable=NO
   daily_status_include_submit_mailq=NO
   daily_submit_queuerun=NO
   [in periodic.conf(5), of course]
 
 I have added the above lines to my newly created /etc/periodic.conf file. 
 Thanks for all the help.

For the record, these changes and others are recommended (by printing
them to the screen during the install phase) specifically by the port
itself.  If you didn't notice it telling you at the time you
installed, you can go back and read the file in:
/usr/ports/mail/postfix/pkg-message
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


PostFix error

2003-10-28 Thread whizkid
For some reason I get these errors on occasion.  Mail is flowing, but I
want to make sure this error goes away...

Oct 28 03:01:00 ns1 postfix/sendmail[1523]: fatal: unsupported: -bh
Oct 28 03:01:01 ns1 postfix/sendmail[1524]: fatal: unsupported: -bH

Currently I am running FreeBSD 5.1, Postfix, Courier-Imap, SquirrelMail 1.4.2

They have all been install from the Ports, upgraded with PortUprage and
CVSup.

rc.conf has:

sendmail_enable=NONE

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PostFix error

2003-10-28 Thread Lowell Gilbert
[EMAIL PROTECTED] writes:

 For some reason I get these errors on occasion.  Mail is flowing, but I
 want to make sure this error goes away...
 
 Oct 28 03:01:00 ns1 postfix/sendmail[1523]: fatal: unsupported: -bh
 Oct 28 03:01:01 ns1 postfix/sendmail[1524]: fatal: unsupported: -bH
 
 Currently I am running FreeBSD 5.1, Postfix, Courier-Imap, SquirrelMail 1.4.2
 
 They have all been install from the Ports, upgraded with PortUprage and
 CVSup.
 
 rc.conf has:
 
 sendmail_enable=NONE

You forgot to disable the log generation in the daily periodic(8)
script.  There are some other daily operations you should probably
disable, too.  Try:
daily_clean_hoststat_enable=NO
daily_status_mail_rejects_enable=NO  
daily_status_include_submit_mailq=NO
daily_submit_queuerun=NO
[in periodic.conf(5), of course]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PostFix error

2003-10-28 Thread whizkid
 You forgot to disable the log generation in the daily periodic(8)
 script.  There are some other daily operations you should probably
 disable, too.  Try:
 daily_clean_hoststat_enable=NO
 daily_status_mail_rejects_enable=NO
 daily_status_include_submit_mailq=NO
 daily_submit_queuerun=NO
 [in periodic.conf(5), of course]

I see a periodic folder off of /etc but no periodic.conf file.  Should I
just create one with the above settings?  Also it seems that there are
only 2 errors, not 4.

Ahhh I see the error now  In the periodic folder, under daily there is
a script called 150.clean-hoststat

this file contains the following lines:

if [ -z $(sendmail -bh 21) ]; then
rc=2
else
echo 
echo Removing stale entries from sendmail host status cache:
rc=0
sendmail -bH || rc=1

this is the source of the bh errors.  I will disable this command and see
if I get any more errors.  Thanks for pointing me in the right direction. 
Is there a way to do this is PostFix or is this done automatically?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]