Dear All,
Saya mau tanya dong, saya install  mail server pakai
postfix dan UW-IMAP dan untuk webmail pakai squirrelmail .Pas buat
kirim email di webmail saya untuk yang inbox nya tidak tampil email ya
dan yang ada malah THIS FOLDER IS EMPTY mohon bantuannya untuk memecahkan 
problem ini .

Berikut ini saya lampirakan konfigurasi main.cf dan configurasi pop3 dan imap 
saya

main.cf

soft_bounce = no
queue_directory = /var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/lib/postfix
mail_owner = postfix
#default_privs = nobody
myhostname = linux.cahpati.net
#myhostname = virtual.domain.tld
mydomain = cahpati.net
myorigin = $myhostname
#myorigin = $mydomain
inet_interfaces = all
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, localhost
#proxy_interfaces =
#proxy_interfaces = 1.2.3.4
#mydestination = $myhostname, localhost.$mydomain, localhost
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
#    mail.$mydomain, www.$mydomain, ftp.$mydomain
#mydestination = $myhostname, localhost.$mydomain, localhost, linux.cahpati.net
#local_recipient_maps = unix:passwd.byname $alias_maps
local_recipient_maps = proxy:unix:passwd.byname $alias_maps
#local_recipient_maps =
unknown_local_recipient_reject_code = 550
#unknown_local_recipient_reject_code = 450
#mynetworks_style = class
mynetworks_style = subnet
#mynetworks_style = host
#mynetworks = 168.100.189.0/28, 127.0.0.0/8
#mynetworks = $config_directory/mynetworks
#mynetworks = hash:/etc/postfix/network_table
mynetworks = 192.168.7.0/28, 127.0.0.0/8
#relay_domains = $mydestination
#relayhost = $mydomain
#relayhost = gateway.my.domain
#relayhost = uucphost
#relayhost = [an.ip.add.ress]
#relay_recipient_maps = hash:/etc/postfix/relay_recipients
#in_flow_delay = 1s
#
#alias_maps = dbm:/etc/aliases
alias_maps = hash:/etc/aliases
#alias_maps = hash:/etc/aliases, nis:mail.aliases
#alias_maps = netinfo:/aliases
#alias_database = dbm:/etc/aliases
#alias_database = dbm:/etc/mail/aliases
alias_database = hash:/etc/aliases
#alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliases
recipient_delimiter = +
#home_mailbox = Mailbox
home_mailbox = ./Maildir/
#mail_spool_directory = /var/mail
#mail_spool_directory = /var/spool/mail
#mailbox_command = /some/where/procmail
#mailbox_command = /some/where/procmail -a "$EXTENSION"
#mailbox_transport = lmtp:unix:/file/name
#mailbox_transport = cyrus
#fallback_transport = lmtp:unix:/file/name
#fallback_transport = cyrus
#fallback_transport =
#luser_relay = [EMAIL PROTECTED]
#luser_relay = [EMAIL PROTECTED]
luser_relay = wahyu 
#header_checks = regexp:/etc/postfix/header_checks
#fast_flush_domains = $relay_domains
#fast_flush_domains =
smtpd_banner = $myhostname ESMTP $mail_name
#smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)
debug_peer_level = 2
#debug_peer_list = 127..0.0.1
#debug_peer_list = some.domain
debugger_command =
     PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
     xxgdb $daemon_directory/$process_name $process_id & sleep 5
sendmail_path = /usr/sbin/sendmail
newaliases_path = /usr/bin/newaliases
mailq_path = /usr/bin/mailq
setgid_group = maildrop
sample_directory = /usr/share/doc/packages/postfix/samples
#================================================================
# readme_directory: The location of the Postfix README files.   #
#================================================================
readme_directory = /usr/share/doc/packages/postfix/README_FILES
mail_spool_directory = /var/mail
canonical_maps = hash:/etc/postfix/canonical
#virtual_maps = hash:/etc/postfix/virtual
relocated_maps = hash:/etc/postfix/relocated
transport_maps = hash:/etc/postfix/transport
sender_canonical_maps = hash:/etc/postfix/sender_canonical
masquerade_exceptions = root
masquerade_classes = envelope_sender, header_sender, header_recipient
program_directory = /usr/lib/postfix
#masquerade_domains = 
#defer_transports = 
disable_dns_lookups = no
relayhost = smtp.cbn.net.id
default_transport = smtp
#mailbox_command = /usr/bin/procmail -m /etc/procmailrc
#content_filter = 
#mailbox_command = 
#mailbox_transport = 
#smtpd_sender_restrictions = hash:/etc/postfix/access
smtpd_helo_required = yes
#smtpd_helo_restrictions = 
strict_rfc821_envelopes = no
smtpd_recipient_restrictions = permit_mynetworks,reject_unauth_destination
smtp_sasl_auth_enable = no
smtpd_sasl_auth_enable = no
smtpd_use_tls = no
smtp_use_tls = no
mailbox_size_limit = 0
message_size_limit = 10240000


vi /xinetd.d/imap

#
# imap - pop2 mail daemon
#
service pop2
{
    disable        = yes
    socket_type    = stream
    protocol    = tcp
    wait        = no
    user        = root
    server        = /usr/sbin/ipop2d
    flags        = IPv4
}

#
# imap - pop3 mail daemon
#
service pop3
{
    disable        = no
    socket_type    = stream
    protocol    = tcp
    wait        = no
    user        = root
    server        = /usr/sbin/ipop3d
    flags        = IPv4
}

#
# imap - pop3 mail daemon over tls/ssl
#
service pop3s
{
    disable        = no
    socket_type    = stream
    protocol    = tcp
    wait        = no
    user        = root
    server        = /usr/sbin/ipop3d
    flags        = IPv4
}

#
# imap - imap mail daemon
#
service imap
{
    disable        = no
    socket_type    = stream
    protocol    = tcp
    wait        = no
    user        = root
    server        = /usr/sbin/imapd
    flags        = IPv4
}

#
# imap - imap mail daemon over tls/ssl
#
service imaps
{
    disable        = no
    socket_type    = stream
    protocol    = tcp
    wait        = no
    user        = root
    server        = /usr/sbin/imapd
    flags        = IPv4
}

log mail

Dec 10 04:43:05 linux postfix/smtpd[5029]: connect from localhost[127.0.0.1]
Dec 10 04:43:06 linux postfix/smtpd[5029]: 00D9019BE5: 
client=localhost[127.0.0.1]
Dec
10 04:43:06 linux postfix/cleanup[5032]: 00D9019BE5:
message-id=<[EMAIL PROTECTED]>
Dec 10 04:43:06 linux postfix/smtpd[5029]: disconnect from localhost[127.0.0.1]
Dec 10 04:43:06 linux postfix/qmgr[4987]: 00D9019BE5: from=<[EMAIL PROTECTED]>, 
size=709, nrcpt=1 (queue active)
Dec 10 04:43:06 linux imapd[5034]: imap service init from 127.0.0.1
Dec 10 04:43:06 linux imapd[5034]: Login user=hendro host=localhost [127.0.0.1]
Dec 10 04:43:06 linux imapd[5034]: Logout user=hendro host=localhost 
[127..0.0.1]
Dec
10 04:43:06 linux postfix/local[5035]: 00D9019BE5:
to=<[EMAIL PROTECTED]>, relay=local, delay=1, status=sent
(delivered to maildir)

linux:~ # netstat --inet -nap
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       
PID/Program name
tcp        0      0 0.0.0.0:995             0.0.0.0:*               LISTEN      
4903/xinetd
tcp        0      0 0.0.0.0:5801            0.0.0.0:*               LISTEN      
4903/xinetd
tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN      
25330/mysqld
tcp        0      0 0.0.0.0:5901            0.0.0.0:*               LISTEN      
4903/xinetd
tcp        0      0 0.0.0.0:110             0.0.0.0:*               LISTEN      
4903/xinetd
tcp        0      0 0.0.0.0:143             0.0.0.0:*               LISTEN      
4903/xinetd
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      
1644/portmap
tcp        0      0 0.0.0.0:10000           0.0.0.0:*               LISTEN      
1645/perl
tcp        0      0 0.0.0.0:631             0.0.0.0:*               LISTEN      
2326/cupsd
tcp        0      0 0.0.0.0:25              0.0.0.0:*               LISTEN      
4982/master
tcp        0      0 127.0.0.1:953           0.0.0.0:*               LISTEN      
1863/named
udp        0      0 0.0.0.0:32768           0.0.0.0:*                           
1863/named
udp        0      0 0.0.0.0:10000           0.0.0.0:*                           
1645/perl
udp        0      0 0.0.0.0:177             0.0.0.0:*                           
2367/kdm
udp        0      0 192.168.7.50:53         0.0.0.0:*                           
1863/named
udp        0      0 127.0.0.1:53            0.0.0.0:*                           
1863/named
udp        0      0 0.0.0.0:111             0.0.0.0:*                           
1644/portmap
udp        0      0 0.0.0.0:631             0.0.0.0:*                           
2326/cupsd


terima kasih


hendro



      
___________________________________________________________________________
Nama baru untuk Anda! 
Dapatkan nama yang selalu Anda inginkan di domain baru @ymail dan @rocketmail. 
Cepat sebelum diambil orang lain!
http://mail.promotions.yahoo.com/newdomains/id/
_______________________________________________
milis mailing list
[email protected]
http://lists.opensuse-id.org/listinfo.cgi/milis-opensuse-id.org

Kirim email ke