Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread pak kumis
Kalau dari modul perl-nya tidak ada yang kurang, 
sebabnya kalau kurang, hasil debug-nya tidak akan begitu...

Kecuali file modul-perlnya korup (file ada tapi isinya ngaco).
Atau konfigurasi di amavisd.conf-nya ada yang salah

-pak kumis-

- Original Message - 
From: "belajardoang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, October 27, 2004 12:44 AM
Subject: Re: [postfix-users] postfix + amavisd error


> 220 [127.0.0.1] ESMTP amavisd-new service ready
> 
> Bagian itu nggak ada pak.
> btw kalo liat dari hasil debug amavisd apanya yang kurang pak ya?
> 
> 
> rgrds




Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread belajardoang
220 [127.0.0.1] ESMTP amavisd-new service ready
Bagian itu nggak ada pak.
btw kalo liat dari hasil debug amavisd apanya yang kurang pak ya?
rgrds
pak kumis wrote:
hanya segitu ?
[EMAIL PROTECTED] root# telnet 127.0.0.1 10024
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
220 [127.0.0.1] ESMTP amavisd-new service ready
-pak kumis-
 




Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread pak kumis
hanya segitu ?

[EMAIL PROTECTED] root# telnet 127.0.0.1 10024
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
220 [127.0.0.1] ESMTP amavisd-new service ready

-pak kumis-

- Original Message - 
From: "belajardoang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, October 27, 2004 12:12 AM
Subject: Re: [postfix-users] postfix + amavisd error


> [EMAIL PROTECTED] erwin]# telnet localhost 10024
> Trying 127.0.0.1...
> Connected to localhost (127.0.0.1).
> Escape character is '^]'.
> 
> 
> -belajardoang-
> 



Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread avudz
On Tuesday 26 October 2004 5:12 pm, belajardoang wrote:
> [EMAIL PROTECTED] erwin]# telnet localhost 10024
> Trying 127.0.0.1...
> Connected to localhost (127.0.0.1).
> Escape character is '^]'.
>
>

pastikan banner nya muncul :-) 




Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread belajardoang
[EMAIL PROTECTED] erwin]# telnet localhost 10024
Trying 127.0.0.1...
Connected to localhost (127.0.0.1).
Escape character is '^]'.
-belajardoang-
pak kumis wrote:
hasil telnet-nya ?
-pak kumis-
- Original Message - 
From: "belajardoang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 26, 2004 11:58 PM
Subject: Re: [postfix-users] postfix + amavisd error

 




Re: [postfix-users] Re: Postfix + Amavisd problem

2004-10-25 Thread avudz
On Tuesday 26 October 2004 4:58 am, [EMAIL PROTECTED] wrote:
> Di main.cf amavisd-new katanya listen di port 10024,
> tapi di master.cf amavisd-new di-set di port 10025.
>
> Kalau disamakan portnya di kedua file tsb, saya yakin akan jadi jalan
> semuanya.
>
> Maaf top posting, supaya jelas kelihatan masalahnya.
>
>
> regards,
>  -HS
>


saya rasa 10025 itu port untuk forward amavis-new.
mungkin sebaik nya sebelum di test dengan postfix lgs, di debug dulu. 
#  /usr/local/sbin/amavisd debug

dari console yang lain, coba check local SMTP port 10024 (default port 
amavis):

-->  $ telnet 127.0.0.1 10024
 Trying 127.0.0.1...
 Connected to 127.0.0.1.
 Escape character is '^]'.

 220 [127.0.0.1] ESMTP amavisd-new service ready

-->  quit

 221 Bye
 Connection closed by foreign host.

kalau sukses baru tambahkan di dalam master.cf
terus lakukan postfix reload . setelah itu coba check netstat -pln | grep 
10025 dan dari konsol lainnya telnet localhost untuk port 10025.

-->  $ telnet 127.0.0.1 10025
 Trying 127.0.0.1...
 Connected to 127.0.0.1.
 Escape character is '^]'.
 220 xxx.com ESMTP Postfix
-->  quit
 221 Bye
 Connection closed by foreign host.


misal mau nge test ketajaman amavis nya :)

-->  $ telnet 127.0.0.1 10024
 Trying 127.0.0.1...
 Connected to 127.0.0.1.
 Escape character is '^]'.
 220 [127.0.0.1] ESMTP amavisd-new service ready
-->  MAIL FROM:<[EMAIL PROTECTED]>
 250 2.1.0 Sender [EMAIL PROTECTED] OK
-->  RCPT TO:
 250 2.1.5 Recipient postmaster OK
-->  DATA
 354 End data with .
-->  Subject: test1
-->
-->  test1
-->  .

***  250 2.6.0 Ok, id=31859-01, from MTA: 250 Ok: queued as 90B7F16F

-->  MAIL FROM:<[EMAIL PROTECTED]>
 250 2.1.0 Sender [EMAIL PROTECTED] OK
-->  RCPT TO:
 250 2.1.5 Recipient postmaster OK
-->  DATA
 354 End data with .
-->  Subject: test2 - virus test pattern
-->
-->  isi dari eicar.com disini *hehehe kena block* :p
-->  .
--> quit

terus baru masukkan filter ke main.cf agar setiap email masuk di forward dulu 
ke amavisd-new.

content_filter=smtp-amavis:[127.0.0.1]:10024

atau  postconf -e 'content_filter=smtp-amavis:[127.0.0.1]:10024'

jangan lupa juga di liat di amavis.conf nya di bagian inet_socket dan inet_acl 

semoga membantu :-)

./avd





Re: [postfix-users] Re: Postfix + Amavisd problem

2004-10-25 Thread avudz
On Tuesday 26 October 2004 4:58 am, [EMAIL PROTECTED] wrote:
> Di main.cf amavisd-new katanya listen di port 10024,
> tapi di master.cf amavisd-new di-set di port 10025.
>
> Kalau disamakan portnya di kedua file tsb, saya yakin akan jadi jalan
> semuanya.
>
> Maaf top posting, supaya jelas kelihatan masalahnya.
>
>
> regards,
>  -HS
>


saya rasa 10025 itu port untuk forward amavis-new.
mungkin sebaik nya sebelum di test dengan postfix lgs, di debug dulu. 
#  /usr/local/sbin/amavisd debug

dari console yang lain, coba check local SMTP port 10024 (default port 
amavis):

-->  $ telnet 127.0.0.1 10024
 Trying 127.0.0.1...
 Connected to 127.0.0.1.
 Escape character is '^]'.

 220 [127.0.0.1] ESMTP amavisd-new service ready

-->  quit

 221 Bye
 Connection closed by foreign host.

kalau sukses baru tambahkan di dalam master.cf
terus lakukan postfix reload . setelah itu coba check netstat -pln | grep 
10025 dan dari konsol lainnya telnet localhost untuk port 10025.

-->  $ telnet 127.0.0.1 10025
 Trying 127.0.0.1...
 Connected to 127.0.0.1.
 Escape character is '^]'.
 220 xxx.com ESMTP Postfix
-->  quit
 221 Bye
 Connection closed by foreign host.


misal mau nge test ketajaman amavis nya :)

-->  $ telnet 127.0.0.1 10024
 Trying 127.0.0.1...
 Connected to 127.0.0.1.
 Escape character is '^]'.
 220 [127.0.0.1] ESMTP amavisd-new service ready
-->  MAIL FROM:<[EMAIL PROTECTED]>
 250 2.1.0 Sender [EMAIL PROTECTED] OK
-->  RCPT TO:
 250 2.1.5 Recipient postmaster OK
-->  DATA
 354 End data with .
-->  Subject: test1
-->
-->  test1
-->  .

***  250 2.6.0 Ok, id=31859-01, from MTA: 250 Ok: queued as 90B7F16F

-->  MAIL FROM:<[EMAIL PROTECTED]>
 250 2.1.0 Sender [EMAIL PROTECTED] OK
-->  RCPT TO:
 250 2.1.5 Recipient postmaster OK
-->  DATA
 354 End data with .
-->  Subject: test2 - virus test pattern
-->
-->  [EMAIL PROTECTED](P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
-->  .
--> quit

terus baru masukkan filter ke main.cf agar setiap email masuk di forward dulu 
ke amavisd-new.

content_filter=smtp-amavis:[127.0.0.1]:10024

atau  postconf -e 'content_filter=smtp-amavis:[127.0.0.1]:10024'

jangan lupa juga di liat di amavis.conf nya di bagian inet_socket dan inet_acl 

semoga membantu :-)

./avd





Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread pak kumis
hasil telnet-nya ?

-pak kumis-

- Original Message - 
From: "belajardoang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 26, 2004 11:58 PM
Subject: Re: [postfix-users] postfix + amavisd error


> 
>   
> [EMAIL PROTECTED] belajar]# amavisd debug
> Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: starting.  amavisd at 
> mail.kopk ar.co.id amavisd-new-20030616-p9, Unicode aware, 
> LC_CTYPE=en_US, LANG=en_US
> Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Perl 
> version   5.00 8001
> Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module 
> Amavis::Conf1.15
> Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module 
> Archive::Tar1.10
> Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module 
> Archive::Zip1.14




Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread belajardoang




 
   
[EMAIL PROTECTED] belajar]# amavisd debug
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: starting.  amavisd at
mail.kopk ar.co.id amavisd-new-20030616-p9, Unicode aware,
LC_CTYPE=en_US, LANG=en_US
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Perl
version   5.00 8001
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Amavis::Conf    1.15
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Archive::Tar    1.10
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Archive::Zip    1.14
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Compress::Zlib  1.33
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Convert::TNEF   0.17
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Convert::UUlib  1.03
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
MIME::Entity    5.41 4
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
MIME::Parser    5.41 4
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
MIME::Tools 5.41 4
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Mail::Header    1.64
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Mail::Internet  1.64
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Mail::SpamAssassin  3.00 
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Net::Cmd    2.26
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Net::SMTP   2.29
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Net::Server 0.87
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Time::HiRes 1.65
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Module
Unix::Syslog    0.99
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Found myself:
/usr/local/sbin/a mavisd -c /etc/amavisd.conf
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Lookup::SQL code  
NOT load ed
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Lookup::LDAP code 
NOT load ed
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: AMCL-in protocol code 
loaded
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: SMTP-in protocol code 
loaded
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: ANTI-VIRUS code   
loaded
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: ANTI-SPAM  code   
loaded
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Net::Server:
2004/10/26-11:53:5 6 Amavis (type Net::Server::PreForkSimple) starting!
pid(2771)
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Net::Server: Binding
to UNIX so cket file /var/amavis/amavisd.sock using SOCK_STREAM
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Net::Server: Binding
to TCP por t 10024 on host 127.0.0.1
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Net::Server: Setting
up seriali zation via flock
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Found $file   at
/usr/bin/f ile
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: No $arc,  not
using it
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Found $gzip   at
/usr/bin/g zip
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Found $bzip2  at
/usr/bin/b zip2
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: No $lzop, not
using it
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: No $lha,  not
using it
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: No $unarj,    not
using it
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Found $uncompress at
/usr/bin/g zip -d
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: No $unfreeze, not
using it
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: No $unrar,    not
using it
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: No $zoo,  not
using it
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Found $cpio   at
/bin/cpio
Oct 26 11:53:56 mail.kopkar.co.id amavisd[2771]: Using internal av
scanner code for (primary) Clam Antivirus-clamd
Oct 26 11:53:57 mail.kopkar.co.id amavisd[2771]: Found secondary av
scanner Clam  Antivirus - clamscan at /usr/local/bin/clamscan
Oct 26 11:53:57 mail.kopkar.co.id amavisd[2771]: SpamControl:
initializing Mail: :SpamAssassin
Oct 26 11:54:00 mail.kopkar.co.id amavisd[2771]: SpamControl: done
Oct 26 11:54:00 mail.kopkar.co.id amavisd[2771]: Net::Server: Beginning
prefork (2 processes)
Oct 26 11:54:00 mail.kopkar.co.id amavisd[2771]: Net::Server: Starting
"2" child ren
Oct 26 11:54:00 mail.kopkar.co.id amavisd[2772]: Net::Server: Child
Preforked (2 772)
Oct 26 11:54:00 mail.kopkar.co.id amavisd[2773]: Net::Server: Child
Preforked (2 773)
Oct 26 11:54:00 mail.kopkar.co.id amavisd[2771]: Net::Server: Parent
ready for c hildren.


pak kumis wrote:

  Hmmm, port 10024 udah kebuka, padahal kalo liat dari maillog jelas permasalahan ada di 10024.
Saya duga permasalahan-nya ada di amavis-nya,
entah konfignya yang salah atau file pendukungnya yang kurang.

Coba amavisnya di off dulu dan jalankan lagi pada mode deb

Re: [postfix-users] Re: Postfix + Amavisd problem

2004-10-25 Thread pak kumis
Bung harry sudah pernah pakai amavisd-new ? tampaknya belum ya.

di main.cf diset ke 10024 artinya email akan diforward ke program amavisd-new dengan 
alamat:port 127.0.0.1:10024

sedangkan yang di master.cf artinya postfix menerima hasil dari amavisd-nya (scanning) 
dengan mambuka port 127.0.0.1:10025

bagaimana mungkin kedua port disamakan lalu bisa menjamin permasalahan selesai ?

-pak kumis-

- Original Message - 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 26, 2004 11:58 AM
Subject: [postfix-users] Re: Postfix + Amavisd problem


> 
> Di main.cf amavisd-new katanya listen di port 10024,
> tapi di master.cf amavisd-new di-set di port 10025. 
> 
> Kalau disamakan portnya di kedua file tsb, saya yakin akan jadi jalan 
> semuanya. 




Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread pak kumis
Hmmm, port 10024 udah kebuka, padahal kalo liat dari maillog jelas permasalahan ada di 
10024.
Saya duga permasalahan-nya ada di amavis-nya,
entah konfignya yang salah atau file pendukungnya yang kurang.

Coba amavisnya di off dulu dan jalankan lagi pada mode debug
Lalu lakukan perintah telnet ke port 10024.
seperti yang ada di file README amavis..

-pak kumis-

- Original Message - 
From: "anakbawang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 26, 2004 4:48 AM
Subject: Re: [postfix-users] postfix + amavisd error


> [EMAIL PROTECTED] README_FILES]# netstat -tan
> Active Internet connections (servers and established)
> Proto Recv-Q Send-Q Local Address   Foreign Address State
> tcp0  0 127.0.0.1:10024 0.0.0.0:*   LISTEN
> tcp0  0 127.0.0.1:10025 0.0.0.0:*   LISTEN




[postfix-users] Re: Postfix + Amavisd problem

2004-10-25 Thread milis-2
Di main.cf amavisd-new katanya listen di port 10024,
tapi di master.cf amavisd-new di-set di port 10025. 

Kalau disamakan portnya di kedua file tsb, saya yakin akan jadi jalan 
semuanya. 

Maaf top posting, supaya jelas kelihatan masalahnya. 

regards,
-HS 

anakbawang writes: 

 Dear All
Numpang Tanya..
Kira 2x apa penyebab hingga postfix (2.1.5) mail server saya kalo dipasang 
amavisd_new nggak bisa kirim nggak bisa terima.tanpa amavisd-new berjalan 
lancar. 

[EMAIL PROTECTED] lib]# postconf -n
alias_database = hash:/etc/postfix/aliases
alias_maps = hash:/etc/postfix/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
content_filter = smtp-amavis:[127.0.0.1]:10024 **kalo bagian ini di 
uncomment normal**
daemon_directory = /usr/libexec/postfix
debug_peer_level = 2
home_mailbox = Maildir/
html_directory = no
inet_interfaces = all
mail_owner = postfix
mail_spool_directory = /var/spool/mail
mailq_path = /usr/bin/mailq
manpage_directory = /usr/local/man
mydestination = $myhostname, localhost.$mydomain #, localhost
mydomain = kopkar.co.id
myhostname = mail.kopkar.co.id
mynetworks = 178.51.10.0/24, 127.0.0.0/8
newaliases_path = /usr/bin/newaliases
queue_directory = /var/spool/postfix
readme_directory = no
sample_directory = /etc/postfix
sendmail_path = /usr/sbin/sendmail
setgid_group = postdrop
unknown_local_recipient_reject_code = 550
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps = static:504
virtual_mailbox_base = /home/vmail
virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_transport = virtual
virtual_uid_maps = static:503
[EMAIL PROTECTED] lib]# 

[EMAIL PROTECTED] lib]# netstat -pln |grep 10024
tcp0  0 127.0.0.1:10024 0.0.0.0:*   LISTEN 
 3079/amavisd (maste
[EMAIL PROTECTED] lib]# 

[EMAIL PROTECTED] lib]# tail -f /var/log/mail/info
Oct 25 13:21:35 mail pop3d: LOGOUT, [EMAIL PROTECTED], 
ip=[:::178.51.10.244], top=0, retr=0
Oct 25 13:22:42 mail postfix/smtpd[4066]: connect from 
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/smtpd[4066]: B2DE6A5894: 
client=mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/cleanup[4072]: B2DE6A5894: 
message-id=<[EMAIL PROTECTED]>
Oct 25 13:22:42 mail postfix/qmgr[3853]: B2DE6A5894: 
from=<[EMAIL PROTECTED]>, size=3000, nrcpt=1 (queue active)
Oct 25 13:22:42 mail postfix/smtpd[4066]: disconnect from 
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:24:39 mail postfix/smtp[4052]: connect to 127.0.0.1[127.0.0.1]: 
read timeout (port 10024)
Oct 25 13:24:39 mail postfix/smtp[4052]: E7FE3A5892: 
to=<[EMAIL PROTECTED]>, relay=none, delay=6283, status=deferred (connect 
to 127.0.0.1[127.0.0.1]: read timeout) 

Tambahan untuk di master.cf (bagian untuk amvisd nya saja) 

smtp-amavis unix -  -   n -   2  smtp
   -o smtp_data_done_timeout=1200
#-o disable_dns_lookups=yes
	
127.0.0.1:10025 inet n  -   n -   -  smtpd
   -o content_filter=
   -o local_recipient_maps=
   -o relay_recipient_maps=
   -o smtpd_restriction_classes=
   -o smtpd_client_restrictions=
   -o smtpd_helo_restrictions=
   -o smtpd_sender_restrictions=
   -o smtpd_recipient_restrictions=permit_mynetworks,reject
   -o mynetworks=127.0.0.0/8
   -o strict_rfc821_envelopes=yes 




[postfix-users] Postfix + amavisd new Problem

2004-10-25 Thread belajardoang




Dear All
Numpang Tanya..
Kira 2x apa penyebab hingga postfix (2.1.5) mail server saya kalo
dipasang amavisd_new nggak bisa kirim nggak bisa terima.tanpa
amavisd-new berjalan lancar.

[EMAIL PROTECTED] lib]# postconf -n
alias_database = hash:/etc/postfix/aliases
alias_maps = hash:/etc/postfix/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
content_filter = smtp-amavis:[127.0.0.1]:10024 **kalo bagian ini di uncomment normal**
daemon_directory = /usr/libexec/postfix
debug_peer_level = 2
home_mailbox = Maildir/
html_directory = no
inet_interfaces = all
mail_owner = postfix
mail_spool_directory = /var/spool/mail
mailq_path = /usr/bin/mailq
manpage_directory = /usr/local/man
mydestination = $myhostname, localhost.$mydomain #, localhost
mydomain = kopkar.co.id
myhostname = mail.kopkar.co.id
mynetworks = 178.51.10.0/24, 127.0.0.0/8
newaliases_path = /usr/bin/newaliases
queue_directory = /var/spool/postfix
readme_directory = no
sample_directory = /etc/postfix
sendmail_path = /usr/sbin/sendmail
setgid_group = postdrop
unknown_local_recipient_reject_code = 550
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps = static:504
virtual_mailbox_base = /home/vmail
virtual_mailbox_domains =
mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_transport = virtual
virtual_uid_maps = static:503
[EMAIL PROTECTED] lib]#

[EMAIL PROTECTED] lib]# netstat -pln |grep 10024
tcp    0  0 127.0.0.1:10024 0.0.0.0:*  
LISTEN  3079/amavisd (maste
[EMAIL PROTECTED] lib]#

[EMAIL PROTECTED] lib]# tail -f /var/log/mail/info
Oct 25 13:21:35 mail pop3d: LOGOUT, [EMAIL PROTECTED],
ip=[:::178.51.10.244], top=0, retr=0
Oct 25 13:22:42 mail postfix/smtpd[4066]: connect from
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/smtpd[4066]: B2DE6A5894:
client=mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/cleanup[4072]: B2DE6A5894:
message-id=<[EMAIL PROTECTED]>
Oct 25 13:22:42 mail postfix/qmgr[3853]: B2DE6A5894:
from=<[EMAIL PROTECTED]>, size=3000, nrcpt=1 (queue active)
Oct 25 13:22:42 mail postfix/smtpd[4066]: disconnect from
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:24:39 mail postfix/smtp[4052]: connect to
127.0.0.1[127.0.0.1]: read timeout (port 10024)
Oct 25 13:24:39 mail postfix/smtp[4052]: E7FE3A5892:
to=<[EMAIL PROTECTED]>, relay=none, delay=6283, status=deferred
(connect to 127.0.0.1[127.0.0.1]: read timeout)
Oct 25 13:27:42 mail postfix/smtp[4074]: connect to
127.0.0.1[127.0.0.1]: read timeout (port 10024)
Oct 25 13:27:42 mail postfix/smtp[4074]: B2DE6A5894:
to=<[EMAIL PROTECTED]>, relay=none, delay=300, status=deferred
(connect to 127.0.0.1[127.0.0.1]: read timeout)

master.cf terlampir di attachment.






#
# Postfix master process configuration file.  Each logical line 
# describes how a Postfix daemon program should be run. 
#
# A logical line starts with non-whitespace, non-comment text.
# Empty lines and whitespace-only lines are ignored, as are comment 
# lines whose first non-whitespace character is a `#'.  
# A line that starts with whitespace continues a logical line.
#
# The fields that make up each line are described below. A "-" field
# value requests that a default value be used for that field.
#
# Service: any name that is valid for the specified transport type
# (the next field).  With INET transports, a service is specified as
# host:port.  The host part (and colon) may be omitted. Either host
# or port may be given in symbolic form or in numeric form. Examples
# for the SMTP server:  localhost:smtp receives mail via the loopback
# interface only; 10025 receives mail on port 10025.
#
# Transport type: "inet" for Internet sockets, "unix" for UNIX-domain
# sockets, "fifo" for named pipes.
#
# Private: whether or not access is restricted to the mail system.
# Default is private service.  Internet (inet) sockets can't be private.
#
# Unprivileged: whether the service runs with root privileges or as
# the owner of the Postfix system (the owner name is controlled by the
# mail_owner configuration variable in the main.cf file). Only the
# pipe, virtual and local delivery daemons require privileges.
#
# Chroot: whether or not the service runs chrooted to the mail queue
# directory (pathname is controlled by the queue_directory configuration
# variable in the main.cf file). Presently, all Postfix daemons can run
# chrooted, except for the pipe, virtual and local delivery daemons.
# The proxymap server can run chrooted, but doing so defeats most of
# the purpose of having that service in the first place.
# The files in the examples/chroot-setup subdirectory describe how
# to set up a Postfix chroot environment for your type of machine.
#
# Wakeup time: automatically wake up the named service after the
# specified number of seconds. A ? at the end of the wakeup time
# field requests that wake up events be sent only to services that
# 

[postfix-users] Postfix + Amavisd problem

2004-10-25 Thread anakbawang




 Dear All
Numpang Tanya..
Kira 2x apa penyebab hingga postfix (2.1.5) mail server saya kalo
dipasang amavisd_new nggak bisa kirim nggak bisa terima.tanpa
amavisd-new berjalan lancar.

[EMAIL PROTECTED] lib]# postconf -n
alias_database = hash:/etc/postfix/aliases
alias_maps = hash:/etc/postfix/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
content_filter = smtp-amavis:[127.0.0.1]:10024 **kalo bagian ini di uncomment normal**
daemon_directory = /usr/libexec/postfix
debug_peer_level = 2
home_mailbox = Maildir/
html_directory = no
inet_interfaces = all
mail_owner = postfix
mail_spool_directory = /var/spool/mail
mailq_path = /usr/bin/mailq
manpage_directory = /usr/local/man
mydestination = $myhostname, localhost.$mydomain #, localhost
mydomain = kopkar.co.id
myhostname = mail.kopkar.co.id
mynetworks = 178.51.10.0/24, 127.0.0.0/8
newaliases_path = /usr/bin/newaliases
queue_directory = /var/spool/postfix
readme_directory = no
sample_directory = /etc/postfix
sendmail_path = /usr/sbin/sendmail
setgid_group = postdrop
unknown_local_recipient_reject_code = 550
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps = static:504
virtual_mailbox_base = /home/vmail
virtual_mailbox_domains =
mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_transport = virtual
virtual_uid_maps = static:503
[EMAIL PROTECTED] lib]#

[EMAIL PROTECTED] lib]# netstat -pln |grep 10024
tcp    0  0 127.0.0.1:10024 0.0.0.0:*  
LISTEN  3079/amavisd (maste
[EMAIL PROTECTED] lib]#

[EMAIL PROTECTED] lib]# tail -f /var/log/mail/info
Oct 25 13:21:35 mail pop3d: LOGOUT, [EMAIL PROTECTED],
ip=[:::178.51.10.244], top=0, retr=0
Oct 25 13:22:42 mail postfix/smtpd[4066]: connect from
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/smtpd[4066]: B2DE6A5894:
client=mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/cleanup[4072]: B2DE6A5894:
message-id=<[EMAIL PROTECTED]>
Oct 25 13:22:42 mail postfix/qmgr[3853]: B2DE6A5894:
from=<[EMAIL PROTECTED]>,
size=3000, nrcpt=1 (queue active)
Oct 25 13:22:42 mail postfix/smtpd[4066]: disconnect from
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:24:39 mail postfix/smtp[4052]: connect to
127.0.0.1[127.0.0.1]: read timeout (port 10024)
Oct 25 13:24:39 mail postfix/smtp[4052]: E7FE3A5892:
to=<[EMAIL PROTECTED]>,
relay=none, delay=6283, status=deferred
(connect to 127.0.0.1[127.0.0.1]: read timeout)


Tambahan untuk di master.cf (bagian untuk amvisd nya saja) 




smtp-amavis unix -  -   n -   2  smtp
-o smtp_data_done_timeout=1200
#-o disable_dns_lookups=yes
	
127.0.0.1:10025 inet n  -   n -   -  smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o smtpd_restriction_classes=
-o smtpd_client_restrictions=
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o mynetworks=127.0.0.0/8
-o strict_rfc821_envelopes=yes






Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread anakbawang




[EMAIL PROTECTED] README_FILES]# netstat -tan
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address   Foreign Address
State
tcp    0  0 127.0.0.1:32768 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:32769   0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:2049    0.0.0.0:*  
LISTEN
tcp    0  0 127.0.0.1:10024 0.0.0.0:*  
LISTEN
tcp    0  0 127.0.0.1:10025 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:3306    0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:618 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:139 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:110 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:143 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:111 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:80  0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:1   0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:1009    0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:21  0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:22  0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:631 0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:25  0.0.0.0:*  
LISTEN
tcp    0  0 0.0.0.0:443 0.0.0.0:*  
LISTEN
tcp    1  0 127.0.0.1:10024 127.0.0.1:33511
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:32998
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33286
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33604
CLOSE_WAIT
tcp    0  0 178.51.10.212:33752 192.35.244.50:80   
ESTABLISHED
tcp    1  0 127.0.0.1:10024 127.0.0.1:33635
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33058
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33441
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33345
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33440
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33472
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33280
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33600
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33005
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33195
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33227
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33579
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33194
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33546
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33098
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33354
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33161
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33705
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33257
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33545
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33704
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33512
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33352
CLOSE_WAIT
tcp    0  0 178.51.10.212:32778 178.51.10.210:22   
ESTABLISHED
tcp    1  0 127.0.0.1:10024 127.0.0.1:33461
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33205
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33203
CLOSE_WAIT
tcp    0  0 178.51.10.212:32793 203.130.193.140:22 
ESTABLISHED
tcp    1  0 127.0.0.1:10024 127.0.0.1:33202
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33266
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33522
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33298
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:0
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33201
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33521
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33265
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33297
CLOSE_WAIT
tcp    1  0 127.0.0.1:10024 127.0.0.1:33553
CLOSE_W

Re: [postfix-users] postfix + amavisd error

2004-10-25 Thread pak kumis
amavis-nya udah jalan apa belum

coba #netstat -tan  hasilnya apa ?
port amavisnya ada apa ndak ?

-pak kumis-

- Original Message - 
From: "belajardoang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 26, 2004 4:06 AM
Subject: [postfix-users] postfix + amavisd error


>   Dear All
> Numpang Tanya..
> Kira 2x apa penyebab hingga postfix (2.1.5) mail server saya kalo 
> dipasang amavisd_new nggak bisa kirim nggak bisa terima.tanpa 
> amavisd-new berjalan lancar.
> 
> [EMAIL PROTECTED] lib]# postconf -n
> alias_database = hash:/etc/postfix/aliases
> alias_maps = hash:/etc/postfix/aliases
> command_directory = /usr/sbin
> config_directory = /etc/postfix
> content_filter = smtp-amavis:[127.0.0.1]:10024 **kalo bagian ini di 
> uncomment normal**
> daemon_directory = /usr/libexec/postfix
> debug_peer_level = 2
> home_mailbox = Maildir/
> html_directory = no
> inet_interfaces = all
> mail_owner = postfix
> mail_spool_directory = /var/spool/mail
> mailq_path = /usr/bin/mailq
> manpage_directory = /usr/local/man
> mydestination = $myhostname, localhost.$mydomain #, localhost
> mydomain = kopkar.co.id
> myhostname = mail.kopkar.co.id
> mynetworks = 178.51.10.0/24, 127.0.0.0/8
> newaliases_path = /usr/bin/newaliases
> queue_directory = /var/spool/postfix
> readme_directory = no
> sample_directory = /etc/postfix
> sendmail_path = /usr/sbin/sendmail
> setgid_group = postdrop
> unknown_local_recipient_reject_code = 550
> virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
> virtual_gid_maps = static:504
> virtual_mailbox_base = /home/vmail
> virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
> virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
> virtual_transport = virtual
> virtual_uid_maps = static:503
> [EMAIL PROTECTED] lib]#
> 
> [EMAIL PROTECTED] lib]# netstat -pln |grep 10024
> tcp0  0 127.0.0.1:10024 0.0.0.0:*   
> LISTEN  3079/amavisd (maste
> [EMAIL PROTECTED] lib]#
> 
> [EMAIL PROTECTED] lib]# tail -f /var/log/mail/info
> Oct 25 13:21:35 mail pop3d: LOGOUT, [EMAIL PROTECTED], 
> ip=[:::178.51.10.244], top=0, retr=0
> Oct 25 13:22:42 mail postfix/smtpd[4066]: connect from 
> mail.kopkar.co.id[178.51.10.212]
> Oct 25 13:22:42 mail postfix/smtpd[4066]: B2DE6A5894: 
> client=mail.kopkar.co.id[178.51.10.212]
> Oct 25 13:22:42 mail postfix/cleanup[4072]: B2DE6A5894: 
> message-id=<[EMAIL PROTECTED]>
> Oct 25 13:22:42 mail postfix/qmgr[3853]: B2DE6A5894: 
> from=<[EMAIL PROTECTED]>, size=3000, nrcpt=1 (queue active)
> Oct 25 13:22:42 mail postfix/smtpd[4066]: disconnect from 
> mail.kopkar.co.id[178.51.10.212]
> Oct 25 13:24:39 mail postfix/smtp[4052]: connect to 
> 127.0.0.1[127.0.0.1]: read timeout (port 10024)
> Oct 25 13:24:39 mail postfix/smtp[4052]: E7FE3A5892: 
> to=<[EMAIL PROTECTED]>, relay=none, delay=6283, status=deferred (connect 
> to 127.0.0.1[127.0.0.1]: read timeout)
> 
> 
> master.cf
> 
> 
> #
> # ==
> # service type  private unpriv  chroot  wakeup  maxproc command + args
> #   (yes)   (yes)   (yes)   (never) (100)
> # ==
> smtp  inet  n   -   n   -   -   smtpd
> #submission inet n  -   n   -   -   smtpd
> # -o smtpd_etrn_restrictions=reject
> #628  inet  n   -   n   -   -   qmqpd
> pickupfifo  n   -   n   60  1   pickup
> cleanup   unix  n   -   n   -   0   cleanup
> qmgr  fifo  n   -   n   300 1   qmgr
> #qmgr fifo  n   -   n   300 1   oqmgr
> rewrite   unix  -   -   n   -   -   trivial-rewrite
> bounceunix  -   -   n   -   0   bounce
> defer unix  -   -   n   -   0   bounce
> trace unix  -   -   n   -   0   bounce
> verifyunix  -   -   n   -   1   verify
> flush unix  n   -   n   1000?   0   flush
> proxymap  unix  -   -   n   -   -   proxymap
> smtp  unix  -   -   n   -   -   smtp
> relay unix  -   -   n   -   -   smtp
> #   -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
> showq unix  n   -   n   -   -   showq
> error unix  -   -   n   -   -   error
> local unix  -   n   n   -   -   local
> virtual   unix  -   n   n   -   -   virtual
> lmtp  unix  -   -   n   -   -   lmtp
> anvil unix  -   -   n   -   1   anvil
> #
> # Interfaces to non-Postfix software. Be sure to examine the manual
> # pages of the non-Postfix software to find out what options it wants.
> #
> # maildrop. See the Postfix MAILDROP_README fil

[postfix-users] postfix + amavisd error

2004-10-25 Thread belajardoang




 Dear All
Numpang Tanya..
Kira 2x apa penyebab hingga postfix (2.1.5) mail server saya kalo
dipasang amavisd_new nggak bisa kirim nggak bisa terima.tanpa
amavisd-new berjalan lancar.

[EMAIL PROTECTED] lib]# postconf -n
alias_database = hash:/etc/postfix/aliases
alias_maps = hash:/etc/postfix/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
content_filter = smtp-amavis:[127.0.0.1]:10024 **kalo bagian ini di uncomment normal**
daemon_directory = /usr/libexec/postfix
debug_peer_level = 2
home_mailbox = Maildir/
html_directory = no
inet_interfaces = all
mail_owner = postfix
mail_spool_directory = /var/spool/mail
mailq_path = /usr/bin/mailq
manpage_directory = /usr/local/man
mydestination = $myhostname, localhost.$mydomain #, localhost
mydomain = kopkar.co.id
myhostname = mail.kopkar.co.id
mynetworks = 178.51.10.0/24, 127.0.0.0/8
newaliases_path = /usr/bin/newaliases
queue_directory = /var/spool/postfix
readme_directory = no
sample_directory = /etc/postfix
sendmail_path = /usr/sbin/sendmail
setgid_group = postdrop
unknown_local_recipient_reject_code = 550
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps = static:504
virtual_mailbox_base = /home/vmail
virtual_mailbox_domains =
mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_transport = virtual
virtual_uid_maps = static:503
[EMAIL PROTECTED] lib]#

[EMAIL PROTECTED] lib]# netstat -pln |grep 10024
tcp    0  0 127.0.0.1:10024 0.0.0.0:*  
LISTEN  3079/amavisd (maste
[EMAIL PROTECTED] lib]#

[EMAIL PROTECTED] lib]# tail -f /var/log/mail/info
Oct 25 13:21:35 mail pop3d: LOGOUT, [EMAIL PROTECTED],
ip=[:::178.51.10.244], top=0, retr=0
Oct 25 13:22:42 mail postfix/smtpd[4066]: connect from
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/smtpd[4066]: B2DE6A5894:
client=mail.kopkar.co.id[178.51.10.212]
Oct 25 13:22:42 mail postfix/cleanup[4072]: B2DE6A5894:
message-id=<[EMAIL PROTECTED]>
Oct 25 13:22:42 mail postfix/qmgr[3853]: B2DE6A5894:
from=<[EMAIL PROTECTED]>,
size=3000, nrcpt=1 (queue active)
Oct 25 13:22:42 mail postfix/smtpd[4066]: disconnect from
mail.kopkar.co.id[178.51.10.212]
Oct 25 13:24:39 mail postfix/smtp[4052]: connect to
127.0.0.1[127.0.0.1]: read timeout (port 10024)
Oct 25 13:24:39 mail postfix/smtp[4052]: E7FE3A5892:
to=<[EMAIL PROTECTED]>,
relay=none, delay=6283, status=deferred
(connect to 127.0.0.1[127.0.0.1]: read timeout)


master.cf 





#
# ==
# service type  private unpriv  chroot  wakeup  maxproc command + args
#   (yes)   (yes)   (yes)   (never) (100)
# ==
smtp  inet  n   -   n   -   -   smtpd
#submission inet n  -   n   -   -   smtpd
#	-o smtpd_etrn_restrictions=reject
#628  inet  n   -   n   -   -   qmqpd
pickupfifo  n   -   n   60  1   pickup
cleanup   unix  n   -   n   -   0   cleanup
qmgr  fifo  n   -   n   300 1   qmgr
#qmgr fifo  n   -   n   300 1   oqmgr
rewrite   unix  -   -   n   -   -   trivial-rewrite
bounceunix  -   -   n   -   0   bounce
defer unix  -   -   n   -   0   bounce
trace unix  -   -   n   -   0   bounce
verifyunix  -   -   n   -   1   verify
flush unix  n   -   n   1000?   0   flush
proxymap  unix  -   -   n   -   -   proxymap
smtp  unix  -   -   n   -   -   smtp
relay unix  -   -   n   -   -   smtp
#   -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq unix  n   -   n   -   -   showq
error unix  -   -   n   -   -   error
local unix  -   n   n   -   -   local
virtual   unix  -   n   n   -   -   virtual
lmtp  unix  -   -   n   -   -   lmtp
anvil unix  -   -   n   -   1   anvil
#
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# maildrop. See the Postfix MAILDROP_README file for details.
#
maildrop  unix  -   n   n   -   -   pipe
  flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
#
# The Cyrus deliver program has changed incompatibly, multiple times.
#
old-cyrus unix  -   n   n   -   -   pipe
  flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
# Cyrus 2.1.5 (Amos Gouaux)
# Also specify in main.cf: cyrus_destination_recipient_limit=1
cyrus unix  -   n   n   -   -   pipe
  user=cyr