Problems when updating amavisd-new to 2.5.0

Hi the list !
Thanks for the great tips and support we got here. I’m really newbie on mac os x server while it’s now a long time I’m on clients ones.
I wanted to follow topicdesk.com tutorials to update spamassassin and clamav as I saw here the initial conf by Apple isn’t working.
Then, I saw before updating SpamAssassin that I had to update amavisd-new first. So, I begin with this tutorial. Here’s what happened (sorry for the long-long post) :
First installed Xcode 2.4.1.
Everything was fine until the CPAN Perl Module updates, as I always had the “make had returned bad status, install seems impossible” error. Looking for some info on the net, I then understand that you have to install everything Apple suggests as if you don’t, you’ll have later problems whith “make” command (I know, I first wanted to install only gcc that seemed necessary to me, and when nothing works as expected, I had to go back and install everything ...) In fact, the missing BSD SDK was supsected to be the missing thing, but not only. Then, just install everything and this is fine.
Updated the whole asked Perl module without any problem, following the tutorial
Then Reboot the server when asked ; amavisd-new new version 2.5.0 seems OK. Then, the beginning of problems...
My smtp log which is set in debug mode shows lots of error entries such as
May 24 13:11:21 xserve postfix/smtpd[302]: connect from xxxx.adsl.hansenet.de[xxx.xxx.xxx.xxx]
May 24 13:11:22 xserve postfix/smtpd[302]: 0A64A71E1A: client=xxxx.adsl.hansenet.de[xxx.xxx.xxx.xxx]
May 24 13:11:22 xserve postfix/cleanup[349]: 0A64A71E1A: message-id=<890420070524111120@broilingwhelped>
May 24 13:11:22 xserve postfix/qmgr[74]: 0A64A71E1A: from=<[email protected]>, size=1188, nrcpt=1 (queue active)
May 24 13:11:22 xserve postfix/smtp[350]: connect to 127.0.0.1[127.0.0.1]: Connection refused (port 10024)
May 24 13:11:22 xserve postfix/smtp[350]: 0A64A71E1A: to=<[email protected]>, relay=none, delay=1, status=deferred (connect to 127.0.0.1[127.0.0.1]: Connection refused)
May 24 13:11:22 xserve postfix/smtpd[302]: disconnect from xxxx.adsl.hansenet.de[xxx.xxx.xxx.xxx]
Obviously, amavisd-new isn’t running. Then, trying sudo /usr/bin/amavisd and it say there are mistakes in the conf file. BTW, it’s not really obvious trying to migrate settings from the old conf file to the new one :
I don't understand how this old conf settings
@local_domains_acl = ( ".$mydomain" ); # $mydomain and its subdomains
@local_domains_maps = ( 1 );
# @local_domains_acl = qw(); # default is empty, no recipient treated as local
# @local_domains_acl = qw( .example.com );
# @local_domains_acl = qw( .example.com !host.sub.example.net .sub.example.net );
# @local_domains_acl = ( ".$mydomain", '.example.com', 'sub.example.net' );
has to bee changed in the new one way :
@local_domains_maps = ( [".$mydomain"] ); # $mydomain and its subdomains
# @local_domains_maps = (); # default is empty list, no recip. considered local
# @local_domains_maps = # using ACL lookup table
# ( [ ".$mydomain", 'sub.example.net', '.example.com' ] );
# @local_domains_maps = # similar, split list elements on whitespace
# ( [qw( .example.com !host.sub.example.net .sub.example.net )] );
# @local_domains_maps = ( new_RE( qr'[@.]example\.com$'i ) ); # using regexp
# @local_domains_maps = ( read_hash("$MYHOME/local_domains") ); # using hash
# perhaps combined with Postfix: mydestination = /var/amavis/local_domains
# for debugging purposes: dump_hash($local_domains_maps[0]);
Anyway, I doubt this is the (real?) reason to my problems
I correct some of these problems (in fact I forgot to look at amavis.log, but here is what it said) :
May 24 13:53:30 xserve amavis[1072]: INFO: SA version: 3.0.1, 3.000001, no optional modules: Mail::SpamAssassin::SQLBasedAddrList Net::DNS::RR::SOA Net::DNS::RR::NS Net::DNS::RR::MX Net::DNS::RR::A Net::DNS::RR::AAAA Net::DNS::RR::PTR Net::DNS::RR::CNAME Net::DNS::RR::TXT Net::CIDR::Lite Sys::Hostname::Long DBD::mysql IP::Country::Fast Mail::SPF Mail::SPF::Query Mail::SPF::Mech Mail::SPF::Mech::A Mail::SPF::Mech::All Mail::SPF::Mech::Exists Mail::SPF::Mech::IP4 Mail::SPF::Mech::IP6 Mail::SPF::Mech::Include Mail::SPF::Mech::MX Mail::SPF::Mech::PTR Mail::SPF::Mod Mail::SPF::Mod::Exp Mail::SPF::Mod::Redirect Mail::SPF::SenderIPAddrMech Mail::SPF::v1::Record Mail::SPF::v2::Record
May 24 13:53:30 xserve amavis[1072]: SpamControl: init_pre_chroot done
May 24 13:53:30 xserve amavis[1072]: Net::Server: 2007/05/24-13:53:30 Amavis (type Net::Server::PreForkSimple) starting! pid(1072)
May 24 13:53:30 xserve amavis[1072]: Net::Server: Binding to UNIX socket file /var/amavis/amavisd.sock using SOCK_STREAM
May 24 13:53:30 xserve amavis[1072]: Net::Server: Binding to TCP port 10024 on host 127.0.0.1
May 24 13:53:30 xserve amavis[1072]: Net::Server: Setting gid to "82 82"
May 24 13:53:30 xserve amavis[1072]: Net::Server: Setting uid to "82"
May 24 13:53:30 xserve amavis[1072]: Module Amavis::Conf 2.086
May 24 13:53:30 xserve amavis[1072]: Module Archive::Zip 1.18
May 24 13:53:30 xserve amavis[1072]: Module BerkeleyDB 0.26
May 24 13:53:30 xserve amavis[1072]: Module Compress::Zlib 2.004
May 24 13:53:30 xserve amavis[1072]: Module Convert::TNEF 0.17
May 24 13:53:30 xserve amavis[1072]: Module Convert::UUlib 1.08
May 24 13:53:30 xserve amavis[1072]: Module DB_File 1.810
May 24 13:53:30 xserve amavis[1072]: Module Digest::MD5 2.36
May 24 13:53:30 xserve amavis[1072]: Module MIME::Entity 5.420
May 24 13:53:30 xserve amavis[1072]: Module MIME::Parser 5.420
May 24 13:53:30 xserve amavis[1072]: Module MIME::Tools 5.420
May 24 13:53:30 xserve amavis[1072]: Module Mail::Header 1.77
May 24 13:53:30 xserve amavis[1072]: Module Mail::Internet 1.77
May 24 13:53:30 xserve amavis[1072]: Module Mail::SpamAssassin 3.000001
May 24 13:53:30 xserve amavis[1072]: Module Net::Server 0.96
May 24 13:53:30 xserve amavis[1072]: Module Net::Server::PreFork 0.96
May 24 13:53:30 xserve amavis[1072]: Module Net::Server::PreForkSimple 0.96
May 24 13:53:30 xserve amavis[1072]: Module Time::HiRes 1.9707
May 24 13:53:30 xserve amavis[1072]: Module URI 1.35
May 24 13:53:30 xserve amavis[1072]: Module Unix::Syslog 0.99
May 24 13:53:30 xserve amavis[1072]: Amavis::DB code loaded
May 24 13:53:30 xserve amavis[1072]: Amavis::Cache code loaded
May 24 13:53:30 xserve amavis[1072]: SQL base code NOT loaded
May 24 13:53:30 xserve amavis[1072]: SQL::Log code NOT loaded
May 24 13:53:30 xserve amavis[1072]: SQL::Quarantine NOT loaded
May 24 13:53:30 xserve amavis[1072]: Lookup::SQL code NOT loaded
May 24 13:53:30 xserve amavis[1072]: Lookup::LDAP code NOT loaded
May 24 13:53:30 xserve amavis[1072]: AM.PDP-in proto code loaded
May 24 13:53:30 xserve amavis[1072]: SMTP-in proto code loaded
May 24 13:53:30 xserve amavis[1072]: Courier proto code NOT loaded
May 24 13:53:30 xserve amavis[1072]: SMTP-out proto code loaded
May 24 13:53:30 xserve amavis[1072]: Pipe-out proto code NOT loaded
May 24 13:53:30 xserve amavis[1072]: BSMTP-out proto code NOT loaded
May 24 13:53:30 xserve amavis[1072]: Local-out proto code loaded
May 24 13:53:30 xserve amavis[1072]: OS_Fingerprint code NOT loaded
May 24 13:53:30 xserve amavis[1072]: ANTI-VIRUS code loaded
May 24 13:53:30 xserve amavis[1072]: ANTI-SPAM code loaded
May 24 13:53:30 xserve amavis[1072]: ANTI-SPAM-SA code loaded
May 24 13:53:30 xserve amavis[1072]: Unpackers code loaded
May 24 13:53:30 xserve amavis[1072]: Found $file at /usr/bin/file
May 24 13:53:30 xserve amavis[1072]: No $dspam, not using it
May 24 13:53:30 xserve amavis[1072]: No $altermime, not using it
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .mail
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .asc
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .uue
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .hqx
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .ync
May 24 13:53:30 xserve amavis[1072]: No decoder for .F tried: unfreeze, freeze -d, melt, fcat
May 24 13:53:30 xserve amavis[1072]: Found decoder for .Z at /usr/bin/uncompress
May 24 13:53:30 xserve amavis[1072]: Found decoder for .gz at /usr/bin/gzip -d
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .gz (backup, not used)
May 24 13:53:30 xserve amavis[1072]: Found decoder for .bz2 at /usr/bin/bzip2 -d
May 24 13:53:30 xserve amavis[1072]: No decoder for .lzo tried: lzop -d
May 24 13:53:30 xserve amavis[1072]: No decoder for .rpm tried: rpm2cpio.pl, rpm2cpio
May 24 13:53:30 xserve amavis[1072]: Found decoder for .cpio at /bin/pax
May 24 13:53:30 xserve amavis[1072]: Found decoder for .tar at /bin/pax
May 24 13:53:30 xserve amavis[1072]: Found decoder for .deb at /usr/bin/ar
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .zip
May 24 13:53:30 xserve amavis[1072]: No decoder for .7z tried: 7zr, 7za, 7z
May 24 13:53:30 xserve amavis[1072]: No decoder for .rar tried: rar, unrar
May 24 13:53:30 xserve amavis[1072]: No decoder for .arj tried: arj, unarj
May 24 13:53:30 xserve amavis[1072]: No decoder for .arc tried: nomarch, arc
May 24 13:53:30 xserve amavis[1072]: No decoder for .zoo tried: zoo, unzoo
May 24 13:53:30 xserve amavis[1072]: No decoder for .lha tried: lha
May 24 13:53:30 xserve amavis[1072]: No decoder for .cab tried: cabextract
May 24 13:53:30 xserve amavis[1072]: No decoder for .tnef tried: tnef
May 24 13:53:30 xserve amavis[1072]: Internal decoder for .tnef
May 24 13:53:30 xserve amavis[1072]: No decoder for .exe tried: rar, unrar; lha; arj, unarj
May 24 13:53:30 xserve amavis[1072]: Found secondary av scanner ClamAV-clamscan at /usr/bin/clamscan
May 24 13:53:30 xserve amavis[1072]: (!!)TROUBLE in pre_loop_hook: Please create an empty directory /var/amavis/db to hold a database (config variable $db_home)
I created the directory, then it says
May 24 13:58:12 xserve amavis[1133]: (!!)TROUBLE in pre_loop_hook: db_home directory is not writable: /var/amavis/db at /usr/bin/amavisd line 7783.
I changed CHMOD to 777 (just see later to be more restricitve)
And then it seems OK
May 24 14:11:49 localhost /usr/bin/amavisd[44]: starting. /usr/bin/amavisd at localhost amavisd-new-2.2.0 (20041102), Unicode aware
May 24 14:11:49 localhost /usr/bin/amavisd[44]: user=, EUID: 0 (0); group=, EGID: 0 0 (0 0)
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Perl version 5.008006
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Net::Server: 2007/05/24-14:11:49 Amavis (type Net::Server::PreForkSimple) starting! pid(44)
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Net::Server: Binding to UNIX socket file /var/amavis/amavisd.sock using SOCK_STREAM
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Net::Server: Binding to TCP port 10024 on host 127.0.0.1
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Net::Server: Setting gid to "82 82"
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Net::Server: Setting uid to "82"
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Amavis::Conf 2.033
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Archive::Tar 1.22
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Archive::Zip 1.18
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Compress::Zlib 2.004
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Convert::TNEF 0.17
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Convert::UUlib 1.08
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module DB_File 1.810
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module MIME::Entity 5.420
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module MIME::Parser 5.420
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module MIME::Tools 5.420
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Mail::Header 1.77
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Mail::Internet 1.77
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Mail::SpamAssassin 3.000001
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Net::Cmd 2.26
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Net::SMTP 2.29
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Net::Server 0.96
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Time::HiRes 1.9707
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Module Unix::Syslog 0.99
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Amavis::DB code NOT loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Amavis::Cache code NOT loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Lookup::SQL code NOT loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Lookup::LDAP code NOT loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: AMCL-in protocol code loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: SMTP-in protocol code loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: ANTI-VIRUS code loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: ANTI-SPAM code loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Unpackers code loaded
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Found $file at /usr/bin/file
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $arc, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Found $gzip at /usr/bin/gzip
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Found $bzip2 at /usr/bin/bzip2
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $lzop, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $lha, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $unarj, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Found $uncompress at /usr/bin/uncompress
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $unfreeze, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $unrar, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $zoo, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Found $cpio at /usr/bin/cpio
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $ar, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $rpm2cpio, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $cabextract, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No $dspam, not using it
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: KasperskyLab AntiViral Toolkit Pro (AVP)
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: KasperskyLab AVPDaemonClient
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: H+BEDV AntiVir or CentralCommand Vexira Antivirus
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: Command AntiVirus for Linux
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: Symantec CarrierScan via Symantec CommandLineScanner
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: DrWeb Antivirus for Linux/FreeBSD/Solaris
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: F-Secure Antivirus
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: CAI InoculateIT
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: MkS_Vir for Linux (beta)
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: MkS_Vir daemon
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: ESET Software NOD32
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: ESET Software NOD32 - Client/Server Version
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: Norman Virus Control v5 / Linux
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: Panda Antivirus for Linux
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: NAI McAfee AntiVirus (uvscan)
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: VirusBuster (Client + Daemon)
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: CyberSoft VFind
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: Ikarus AntiVirus for Linux
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No primary av scanner: BitDefender
May 24 14:11:49 localhost /usr/bin/amavisd[44]: Found secondary av scanner Clam Antivirus - clamscan at /usr/bin/clamscan
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No secondary av scanner: FRISK F-Prot Antivirus
May 24 14:11:49 localhost /usr/bin/amavisd[44]: No secondary av scanner: Trend Micro FileScanner
May 24 14:11:49 localhost /usr/bin/amavisd[44]: SpamControl: initializing Mail::SpamAssassin
May 24 14:11:52 localhost /usr/bin/amavisd[44]: SpamControl: done
But in fact there's still a problem :
May 24 14:12:22 localhost /usr/bin/amavisd[219]: (00219-01) ESMTP::10024 /var/amavis/amavis-20070524T141222-00219: <p.estxxxx@xxxxxxx> -> <pacvolley@ xxxxxxx > Received: SIZE=5929 from xserve.xxxxx ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00219-01 for <pacvolley@ xxxxxxx>; Thu, 24 May 2007 14:12:22 +0200 (CEST)
May 24 14:12:22 localhost /usr/bin/amavisd[219]: (00219-01) body hash: 05f429e5a692012d98323c55a540b730
May 24 14:12:22 localhost /usr/bin/amavisd[219]: (00219-01) Checking: [82.241.222.174] <p.estxxx@xxxxx> -> <pacvolley@xxxxx>
May 24 14:12:22 localhost /usr/bin/amavisd[219]: (00219-01) p003 1 Content-Type: multipart/alternative
May 24 14:12:22 localhost /usr/bin/amavisd[219]: (00219-01) p001 1/1 Content-Type: text/plain, size: 394 B, name:
May 24 14:12:22 localhost /usr/bin/amavisd[219]: (00219-01) p002 1/2 Content-Type: text/html, size: 3962 B, name:
May 24 14:12:22 localhost /usr/bin/amavisd[302]: (00219-01) run_command: child process [302]: Can't close main::stdin: Bad file descriptor at /usr/bin/amavisd line 1589.\n
May 24 14:12:22 localhost /usr/bin/amavisd[302]: (00219-01) SMTP shutdown: tempdir is being removed: /var/amavis/amavis-20070524T141222-00219
May 24 14:12:23 localhost /usr/bin/amavisd[219]: (00219-01) TROUBLE in check_mail: mime_decode-1 FAILED: parsing file(1) results - missing last 2 results at (eval 40) line 150.
May 24 14:12:23 localhost /usr/bin/amavisd[219]: (00219-01) PRESERVING EVIDENCE in /var/amavis/amavis-20070524T141222-00219
May 24 14:12:23 localhost /usr/bin/amavisd[219]: (00219-01) TIMING [total 284 ms] - SMTP EHLO: 21 (7%), SMTP pre-MAIL: 3 (1%), mkdir tempdir: 1 (0%), create email.txt: 2 (1%), SMTP pre-DATA-flush: 8 (3%), SMTP DATA: 5 (2%), body_hash: 2 (1%), mkdir parts: 3 (1%), mime_decode: 57 (20%), rundown: 181 (64%)
May 24 14:12:23 localhost /usr/bin/amavisd[219]: (00219-01) TROUBLE in process_request: Error writing a SMTP response to the socket: Broken pipe at (eval 36) line 760, <GEN3> line 208.
May 24 14:12:23 localhost /usr/bin/amavisd[219]: (00219-01) Requesting process rundown after fatal error
May 24 14:12:23 localhost /usr/bin/amavisd[219]: (00219-01) load: 100 %, total idle 0.001 s, busy 0.287 s
May 24 14:12:23 localhost /usr/bin/amavisd[219]: (00219-01) SMTP shutdown: Error writing a SMTP response to the socket: Bad file descriptor at (eval 36) line 760.\n
And in the mail log I get corresponding errors such as :
May 24 14:30:20 xserve postfix/smtpd[626]: connect from xxxxxx.club-internet.fr[xxx.xxx.xxx.xxx]
May 24 14:30:20 xserve postfix/smtpd[626]: 5580872531: client= xxxxxx.club-internet.fr[xxx.xxx.xxx.xxx]
May 24 14:30:20 xserve postfix/cleanup[452]: 5580872531: message-id=<00e301c79dff$49859120$0100a8c0@pcservice>
May 24 14:30:20 xserve postfix/smtpd[626]: disconnect from xxxxxx.club-internet.fr[xxx.xxx.xxx.xxx]
May 24 14:30:20 xserve postfix/qmgr[64]: 5580872531: from=<[email protected]>, size=95594, nrcpt=1 (queue active)
May 24 14:30:20 xserve postfix/smtp[464]: 5580872531: to=<sjoly@ xxxxxx.com>, relay=127.0.0.1[127.0.0.1], delay=0, status=deferred (host 127.0.0.1[127.0.0.1] said: 421 4.3.2 Service shutting down, closing channel (in reply to end of DATA command))
I first thought mails were lost, and obviously as it won’t be so easy to fix alone without any help (and time is running loosing mails), I decided to come back to the old amavisd-new version, restoring /usr/bin/amavis and amavis.conf, and rebooting computer.
Then, another problem with Perl modules that were updated so that old amavis seemed also not working. I decided to replace /Library/Perl and System/Library/Perl with new ones from a clean fresh install on my local server. Rebooted, and seems to be OK as before. Then looked for Postfix and understood than flushing will force deferred mails to be processed.
Anyway, all is to be done again. If anybody here as an idea of what's going wrong, I'll be glad to learn ...
  Mac OS X (10.4.9)  

well, there you have it – a classical if then loop.
seems i'm still stuck somewhere in the middle of the amavisd.conf nightmare. had amavisd-new 2.4.5 / spamassassin 3.1.8 up and running after a real nightmare (which had to do with daemonize=1).
after i tried to get up-to-date with amavisd-new 2.5.1 and spamassassin 3.2.1 i saw the same problems (see below) again, while launchd tried to get amavisd started.
Jun 15 05:14:11 mail launchd: org.amavis.amavisd: exited with exit code: 2
Jun 15 05:14:11 mail launchd: org.amavis.amavisd: respawning too quickly! throttling
Jun 15 05:14:11 mail launchd: org.amavis.amavisd: 9 more failures without living at least 60 seconds will cause job removal
Jun 15 05:14:11 mail launchd: org.amavis.amavisd: will restart in 10 seconds
remembering the previous troubles, i double checked all things, which could be set wrong (daemonize, etc.) and all was well. tried a second install and all to no success.
later i had the idea, it might be the new amavisd.conf, which troubles (why ever) the startup. so i used the v2.4.5 one and lo and behold, it worked. but why? what is so strange/new/different in 2.5.1, that the startup of amavisd gets broken?
now i read, that they changed a bunch of stuff and i certainly would be using the newer versions conf file, but it seems i don't get it right configured. i'm on the latest updated 10.4.9 server with all fixes installed. every service is working, mail gets in/out and gets even tagged.
well, i didn't do the setup with the 2 users junkmail/nojunkmail yet. is it really necessary to set them up as local users? can't they be handled as every other user which has mail enabled via wgm?
anyone can help me here? thx.
Various   Mac OS X (10.4.9)   Mac OS X Server (10.4.9)

Similar Messages

  • I have a problem when updated the new release of iphoto version(11 jun 2012). After that I cannot open any photo libraries and program is error.

    I have a problem when updated the new release of iphoto version(11 jun 2012). After that I cannot open any photo libraries and program is error. I must to force quit iphoto window. There are any fixed bug update.

    If you have no photos:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library' and start.
    Regards
    TD

  • I have a question my iphone4s has a problem when updated iOS8 there will be freeze problem i think iOS8 is not supported in 4s!!!!!!!!!

    i have a question my iphone4s has a problem when updated iOS8 there will be freeze problem i think iOS8 is not supported in 4s!!!!!!!!!.
    one more question when i phone5 update with iOS 8.1.2 this iOS supported iphone5???

    Hi Ios 8.1.2 Should work on iPhone 4s / 5 You may have a bug Backup to  cloud over WiFi Then Restore back to Factory  Settings This will make iPhone as new. Use same Apple ID & you will get your Apps & Data back Do Restore over your WiFi. Cheers Brian

  • I have a problem when updating applications on iOS 7.0.2

    I have a problem when updating apps on iOS 7.0.2 to go to the appstore I get the update but only tells me open, not update, I have to uninstall and reinstall te app and gives me the option to update. Sorry my bad english

    I am in the process of installing 9i on SUSE Linux 7.2. The only Linux that is certified to run 9i. The machine is is a fresh install of SUSE. I am running into the same problem. I ran through the first make problem by going to a shell and invoking a make -f oemagent.mk. Built the library just fine. Got errors when trying to run make -f ins_rdbms.mk. Not sure why the installer or the command line is having problems.
    Not sure if I can just hit Ignore and go on????
    Any help would be appreciated. You would think 9i would spread like butter on their "Certified" platform.

  • Hlep.. Problem when updating aspx templates

    Hi there, I-m having a huge problem when updating pages from
    a .asp template, it replaces my 1 line of code
    with <%@ Page Language="VB" ContentType="text/html"
    ResponseEncoding="iso-8859-1" %> and errases the resto of the
    attributes i have on each page, making it unfunctionable.
    Does anyne know why the template when updating does that?
    thanks for your help

    Hi Suman,
    The changes are getting lost when i logout and login back to SAP.
    In Current session i am able to see the changes. But changes are lost as soon as i end up my session,
    but this is happening only in case of template box width. All other changes are retained between my various SAP sessions.
    So wanted to know if any other value is over-writing the template box width values.
    Regards
    Manpreet Singh

  • I have problem when update to belle the folder of ...

    I have problem when update to belle the folder of games disappear??  c7
    I need to solve ??? Plus

    Do you mean that pink folder w/ the controller icon on it?  I lost that too on my N8.  Actually, lost all of the folders that came with Anna like Applications & Music.  Wish I could get them back as now I can only make the generic yellow folder which isn't as aesthetically appeasing.
    However, reading articles on Belle there was a picture of a Belle N8 with the games folder shortcut on the homescreen - so maybe it still exists & I just cannot find it.
    Good luck & I'll let you know if I figure this out.

  • Validation problem when update a row in OAF

    created a application using OAF. No problem to create a row, when tried to update the row, received the following error message:
    oracle.jbo.RowValException: JBO-27012: Row validation method validation() failed for row with key oracle.jbo.Key
    2) Steps to Reproduce
    select a row from search result page for update, after change the value and apply it, received the following error message:
    oracle.jbo.RowValException: JBO-27012: Row validation method validation() failed for row with key oracle.jbo.Key

    yes. it is the EO based VO page. Create and Update used same VO and no problem to create the row, had problem when update the row.

  • I have problem when updating the latest version of Pro-X, I tried for several times, so I uninstall and re-install it. It is unsuccessful to re-install the Pro-X and it direct me to ask help from CS,also showing this message: Exit Code: 6  Please see spec

    I have problem when updating the latest version of Pro-X, I tried for several times, so I uninstall and re-install it. It is unsuccessful to re-install the Pro-X and it direct me to ask help from CS,also showing this message: Exit Code: 6  Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW025, DW050 ... WARNING: DW024, DW025 ..., please advice me the step to re-install the Pro-X. Thanks

    Please follow Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    Do let us know if it worked.
    Regards
    Rajshree

  • When updating to new operating system. Apple ID asks for my password and boyfriends password. Why?

    when updating to new operating system. Apple ID asks for my password and boyfriends password. Why?

    You may be logged into iCLoud and the iTunes/App stores on separate accounts, or he may have downloaded some apps on your phone and they need to be updated.

  • Problem when updating af:table with new records

    Hi,
    I have a page that shows two tables from the same DB table but with different VOs.
    Table1 displays records where date_column is within the current month, table2 displays all records.
    The problem is that when I add new record and return to the page, I find out that the new record has been added to both tables, it’s shown in table1 even though its date is not within this month.
    When I run the page again the problem is solved and everything is in the right place !!
    How can I fix this?

    Hi,
    you will have to re-query the iterators because you add the new row to a VO - which is an iterator - that wont filter your input (instead you add to a filtered iterator). However, its strange that both tables show that value because if these are different VO they should be independent. Only if they are instances of the same VO tehy are expected to show the same data
    Frank

  • Help! Problems when updating content on Connect Pro site

    Hiya,
    I've been updating web links in existing training packages on our connect pro site but when I got to re-publish and update the existing content, I have issues.
    Each time I re-publish, different things happen. I either get slide audio but no visual or I get visual with no audio or I get nothing but the Adobe Presenter loading symbol! It's driving me crazy... does anyone know what I'm doing wrong or how to fix the problem? Any suggestions would be welcome.
    Thanks
    Specifics:
    Adobe Presenter version 7.0.5
    PowerPoint 2010
    Windows XP
    Adobe Connect Pro 7 (I think!)

    well, there you have it – a classical if then loop.
    seems i'm still stuck somewhere in the middle of the amavisd.conf nightmare. had amavisd-new 2.4.5 / spamassassin 3.1.8 up and running after a real nightmare (which had to do with daemonize=1).
    after i tried to get up-to-date with amavisd-new 2.5.1 and spamassassin 3.2.1 i saw the same problems (see below) again, while launchd tried to get amavisd started.
    Jun 15 05:14:11 mail launchd: org.amavis.amavisd: exited with exit code: 2
    Jun 15 05:14:11 mail launchd: org.amavis.amavisd: respawning too quickly! throttling
    Jun 15 05:14:11 mail launchd: org.amavis.amavisd: 9 more failures without living at least 60 seconds will cause job removal
    Jun 15 05:14:11 mail launchd: org.amavis.amavisd: will restart in 10 seconds
    remembering the previous troubles, i double checked all things, which could be set wrong (daemonize, etc.) and all was well. tried a second install and all to no success.
    later i had the idea, it might be the new amavisd.conf, which troubles (why ever) the startup. so i used the v2.4.5 one and lo and behold, it worked. but why? what is so strange/new/different in 2.5.1, that the startup of amavisd gets broken?
    now i read, that they changed a bunch of stuff and i certainly would be using the newer versions conf file, but it seems i don't get it right configured. i'm on the latest updated 10.4.9 server with all fixes installed. every service is working, mail gets in/out and gets even tagged.
    well, i didn't do the setup with the 2 users junkmail/nojunkmail yet. is it really necessary to set them up as local users? can't they be handled as every other user which has mail enabled via wgm?
    anyone can help me here? thx.
    Various   Mac OS X (10.4.9)   Mac OS X Server (10.4.9)

  • Update amavisd-new on 10.6.8

    Hi All,
    I am planning to migrate to 10.6.8 server from 10.4.11. I have read a few issues with amavisd and would like to address them before users start driving me nuts. My understanding is that amavisd 2.6.2 or 2.6.4 is installed under OSXS 10.6.8. I have the directions "Updating_amavisd_new_on_OS_X_Server_10_5_Leopard" it says "or Greater" and the referance to the amavisd is amavisd-new-2.6.4.tar.gz. There are 3 stable releaces higher then that at http://www.ijs.si/software/amavisd/
    amavisd-new-2.8.0.tar.gz.
    amavisd-new-2.7.2.tar.gz.
    amavisd-new-2.6.6.tar.gz.
    So can I use those update directions for anyone of the 3 options or will it only work with 2.6.6 which I assume is fine with the version of PERL called for.
    Hopefully pterobyte is out there since I know you have the answers I need, lol.
    Thanks Mike
    PS why so few updates at http://osx.topicdesk.com/ for things like this on like 10.6 server and up?

    Hi Alex,
    Thanks again, I know I can always count on you for sound advise when it comes to my mail server. I was planning on a clean install and then migrate.
    You think 10.8.x is ready for primetime? I keep reading about issues with various aspects of the server including email and file services which are the 2 main things I do.
    It may be moot since the current hardware is a MacPro 1,1 which is just before the "Mac Pro early 2008" requirement for 10.8. It's a Mac Pro 2 x 2.66Ghz intel 2006.
    Thank you again,
    Mike

  • Problem when Updating the Challan (J1INCHLN)

    Dear Expert,
            I am facing problem when i am updating Challan throught 'J1INCHLN'. I  debuged the  'J1INCHLN' and got the problem that TDS line item in BSEG table and TDS line item in WITH_ITEM does not match. 
    Thank you in advance,
    Denish Patel.

    Hi,
    This error also comes if you donot mention Business Place and Section code during the transaction.  Please check whether
    you have defined business place and section code and assigned to your company code and also entered them during
    transaction.
    Regards,
    Sadashivan

  • [HELP] Problem when update 1 unicode form

    hi all,
    I got a problem when I update unicode form :(
    so, I have already tested my web application (Struts-ibatis-velocity-tiles) on my PC (tomcat 5.5.12, mysql 4.1 - utf8 default, JDK 5.0), everything was okie. I could update 1 unicode form (the form which contains unicode characters - firstname, lastname). I use 1 filter for output and input, below is my web.xml:
    <!-- Filter to set character encoding on each request -->
    <filter>
    <filter-name>Set Character Encoding</filter-name>
    <filter-class>filters.SetCharacterEncodingFilter</filter-class>
    <init-param>
    <param-name>encoding</param-name>
    <param-value>UTF-8</param-value>
    </init-param>
    </filter>
    <!-- Define filter mappings for the defined filters -->
    <filter-mapping>
    <filter-name>Set Character Encoding</filter-name>
    <servlet-name>action</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>Set Character Encoding</filter-name>
    <servlet-name>velocity</servlet-name>
    </filter-mapping>
    but ... when I deploy and run it on eatj.com, mysql4.1 - utf8, jdk 5.0, I couldn't update unicode form, my last name and first name fields couldn't be saved with unicode characters (utf-8) ...
    what happened :( ... Is this problem of hosting or my web application ??? :(
    help me :(
    thanks in advance,
    bowlkhin

    You need to install the bc package. Apparently the script uses bc to calculate some integer values.
    Brian

  • Problem when updating Management Engine (ME) firmware - photo attached

    Hello All:
    I have encountered a perplexing problem when attempting to update the firmware in the Intel Management Engine.  The firmware update is posted on the W520 driver page (it is package 83rf32ww).  The problem is the error message shown in the photo below.
    The update process starts when the MEUpdate.CMD file is selected within the DOS window, but after a few seconds, the error message at the bottom of the picture appears.
    Any suggestions would be appreciated.
    Thanks,
    Michael
    Solved!
    Go to Solution.

    Yes, except you're running it from C:\Windows\system32 rather than the expected C:\DRIVERS\WIN\ME.
    Basically, you have to navigate to the folder FIRST, then run the file.
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

Maybe you are looking for

  • Upgrade to WIN8.1 has downgraded software capability on HP Officejet Pro 8600 Plus

    Help! I upgraded my pc to WIndows 8.1 (64Bit) and now I do not have an option in the software to scan a TIFF file or any photo format except jpg or pdf.   I upgraded my HP drivers to no availe. Also, I seem to be able to only access  the HP software

  • Does it always take hours to download a movie through the apple tv when you rent from I tunes

    Does it always take hours to download a movie through apple tv when renting a movies through itunes?

  • Problems Connecting an OAS 10.1.2.0.0 to an DB 8i

    Hello We have some problems connecting an OAS 10.1.2.0.0 to an Oracle8i Enterprise Edition Release 8.1.7.4.1 Database. When the application is trying to establish the connection with DB, the following error is thrown: java.sql.SQLException: ORA-00604

  • Change folio's "owner"

    Hello. If i upload my publication using folio builder with my own Adobe ID I can not publish it on distribution server because publishing needs publications Adobe ID (different from mine). Then. When i log to Folio producer with publication ID, I can

  • MuVo^2 firmware is

    Hello I have a Creative Muvo^2. When I switch it on says there is a 'firmware error' after the initial two screens of 'Creative' and 'MuVo^2.' After it says this it goes into the Recovery Mode .00 where I have the usual 6 options: Run PC ScanDisk Cle