Instalasi dan konfigurasi Zimbra Collaboration Suite versi 5.0.18 kali ini dipakai untuk mailserver sebuah company swasta di Jakarta, pilihan platform menggunakan sistem operasi Linux Debian 4.0 Etch. Sebelumnya saya sempat mendokumentasikan instalasi dan konfigurasi Zimbra yaitu : Instalasi Zimbra pada sistem operasi Linux CentOS dan Instalasi Zimbra pada sistem operasi Linux openSUSE.
Untuk keperluan instalasi ini mereka sudah siapkan domain co.id, 1 IP Publik, 1 server merk EXTRON NetSystem 330A. Hasil yang mereka inginkan adalah system mailserver memakai Zimbra dan training administrasi dan troubleshooting Zimbra. Berikut dokumentasi instalasi dan konfigurasi yang sempat aku simpan semoga berguna bagi IT staff/sysadmin yang sering berkutat dengan mailserver.
Instalasi sistem operasi Debian 4 Etch menggunakan iso network install. Pasca instalasi standart system Debian 4 Etch ada beberapa hal yang perlu dibersihkan(remove) seperti: exim4 exim4-base exim4-config exim4-daemon-light, nfs-common, portmap. Setelah bersih-bersih, dilanjutkan instalasi Bind(DNS) dan setup Zimbra. Berikut prosesnya dimana IP Public dan domain company dalam dokumentasi ini saya samarkan.
mail:/home/gtoms# cat /etc/debian_version
4.0
mail:/home/gtoms# uname -a
Linux mail 2.6.18-6-686 #1 SMP Thu Aug 20 21:56:59 UTC 2009 i686 GNU/Linux
mail:/home/gtoms# cat /etc/hosts
127.0.0.1 localhost
202.52.217.xx mail.galxxxx.co.id mail
Instalasi dan konfigurasi Bind9(DNS) untuk MX record mail.galxxxx.co.id :
mail:/home/gtoms# apt-get install -y bind9
Reading package lists… Done
Building dependency tree… Done
The following NEW packages will be installed:
bind9
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/296kB of archives.
After unpacking 782kB of additional disk space will be used.
Selecting previously deselected package bind9.
(Reading database … 19912 files and directories currently installed.)
Unpacking bind9 (from …/bind9_1%3a9.3.4-2etch5_i386.deb) …
Setting up bind9 (9.3.4-2etch5) …
wrote key file “/etc/bind/rndc.key”
Starting domain name service…: bind.
mail:/home/gtoms#
mail:/home/gtoms# nano /etc/bind/named.conf.local
mail:/etc/bind# cat /etc/bind/named.conf
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
include “/etc/bind/named.conf.options”;
// prime the server with knowledge of the root servers
zone “.” {
type hint;
file “/etc/bind/db.root”;
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone “localhost” {
type master;
file “/etc/bind/db.local”;
};
zone “127.in-addr.arpa” {
type master;
file “/etc/bind/db.127”;
};
zone “0.in-addr.arpa” {
type master;
file “/etc/bind/db.0”;
};
zone “255.in-addr.arpa” {
type master;
file “/etc/bind/db.255”;
};
zone “mail.galxxxx.co.id” {
type master;
file “/etc/bind/db.mail.galxxxx.co.id”;
};
// zone “com” { type delegation-only; };
// zone “net” { type delegation-only; };
// From the release notes:
// Because many of our users are uncomfortable receiving undelegated answers
// from root or top level domains, other than a few for whom that behaviour
// has been trusted and expected for quite some length of time, we have now
// introduced the “root-delegations-only” feature which applies delegation-only
// logic to all top level domains, and to the root domain. An exception list
// should be specified, including “MUSEUM” and “DE”, and any other top level
// domains from whom undelegated responses are expected and trusted.
// root-delegation-only exclude { “DE”; “MUSEUM”; };
include “/etc/bind/named.conf.local”;
mail:/etc/bind#
mail:/etc/bind# nano db.mail.galxxxx.co.id
mail:/etc/bind# cat db.mail.galxxxx.co.id
;
; Addresses and other host information.
;
$TTL 86400
@ IN SOA mail.galxxxx.co.id. gultom.mail.galxxxx.co.id. (
2009012501 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ; Minimum
)
; Define the nameservers and the mail servers
IN NS 202.52.217.xx
IN A 202.52.217.xx
IN MX 10 mail.galxxxx.co.id.
webmail IN A 202.52.217.xx
mail IN A 202.52.217.xx
mail:/etc/bind#
Forwarder ke DNS ISP :
mail:/etc/bind# nano named.conf.options
forwarders {
202.52.200.xxx;
};
mail:/etc/bind# /etc/init.d/bind9 restart
Stopping domain name service…: bind.
Starting domain name service…: bind.
mail:/home/gtoms# nano /etc/resolv.conf
search galxxxx.co.id
nameserver 202.52.217.xx
mail:/etc/bind# tail -f /var/log/syslog
Sep 12 17:47:35 mail named[2691]: listening on IPv4 interface eth0, 202.52.217.xx#53
Sep 12 17:47:35 mail named[2691]: command channel listening on 127.0.0.1#953
Sep 12 17:47:35 mail named[2691]: command channel listening on ::1#953
Sep 12 17:47:35 mail named[2691]: zone 0.in-addr.arpa/IN: loaded serial 1
Sep 12 17:47:35 mail named[2691]: zone 127.in-addr.arpa/IN: loaded serial 1
Sep 12 17:47:35 mail named[2691]: zone 255.in-addr.arpa/IN: loaded serial 1
Sep 12 17:47:35 mail named[2691]: zone mail.galxxxx.co.id/IN: loaded serial 2009012501
Sep 12 17:47:35 mail named[2691]: zone localhost/IN: loaded serial 1
Sep 12 17:47:35 mail named[2691]: running
Sep 12 17:47:35 mail named[2691]: zone mail.galxxxx.co.id/IN: sending notifies (serial 2009012501)
mail:/etc/bind# cd /home/gtoms
mail:/home/gtoms#
mail:/home/gtoms# apt-get install libc6-i686 sudo libidn11 curl fetchmail libgmp3c2 libexpat1 libgetopt-mixed-perl libxml2 libstdc++6 libpcre3 libltdl3 ssh
Reading package lists… Done
Building dependency tree… Done
libc6-i686 is already the newest version.
sudo is already the newest version.
libidn11 is already the newest version.
libstdc++6 is already the newest version.
libpcre3 is already the newest version.
ssh is already the newest version.
The following extra packages will be installed:
ca-certificates libcurl3 openssl
Suggested packages:
fetchmailconf resolvconf
Recommended packages:
xml-core
The following NEW packages will be installed:
ca-certificates curl fetchmail libcurl3 libexpat1 libgetopt-mixed-perl libgmp3c2 libltdl3 libxml2 openssl
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
Need to get 3525kB of archives.
After unpacking 8024kB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://debian.indika.net.id etch/main ca-certificates 20070303 [97.2kB]
Get:2 http://debian.indika.net.id etch/main libexpat1 1.95.8-3.4 [62.9kB]
Get:3 http://debian.indika.net.id etch/main libgetopt-mixed-perl 1.008-10 [19.3kB]
Get:4 http://debian.indika.net.id etch/main libgmp3c2 2:4.2.1+dfsg-4 [430kB]
Get:5 http://debian.indika.net.id etch/main libltdl3 1.5.22-4 [169kB]
Get:6 http://security.debian.org etch/updates/main openssl 0.9.8c-4etch5 [1016kB]
Get:7 http://security.debian.org etch/updates/main libcurl3 7.15.5-1etch3 [169kB]
Get:8 http://security.debian.org etch/updates/main curl 7.15.5-1etch3 [163kB]
Get:9 http://security.debian.org etch/updates/main fetchmail 6.3.6-1etch2 [643kB]
Get:10 http://security.debian.org etch/updates/main libxml2 2.6.27.dfsg-6+etch1 [757kB]
Fetched 3525kB in 6s (562kB/s)
Preconfiguring packages …
Selecting previously deselected package openssl.
(Reading database … 19306 files and directories currently installed.)
Unpacking openssl (from …/openssl_0.9.8c-4etch5_i386.deb) …
Creating directory /etc/ssl
Selecting previously deselected package ca-certificates.
Unpacking ca-certificates (from …/ca-certificates_20070303_all.deb) …
Selecting previously deselected package libcurl3.
Unpacking libcurl3 (from …/libcurl3_7.15.5-1etch3_i386.deb) …
Selecting previously deselected package curl.
Unpacking curl (from …/curl_7.15.5-1etch3_i386.deb) …
Selecting previously deselected package fetchmail.
Unpacking fetchmail (from …/fetchmail_6.3.6-1etch2_i386.deb) …
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from …/libexpat1_1.95.8-3.4_i386.deb) …
Selecting previously deselected package libgetopt-mixed-perl.
Unpacking libgetopt-mixed-perl (from …/libgetopt-mixed-perl_1.008-10_all.deb) …
Selecting previously deselected package libgmp3c2.
Unpacking libgmp3c2 (from …/libgmp3c2_2%3a4.2.1+dfsg-4_i386.deb) …
Selecting previously deselected package libltdl3.
Unpacking libltdl3 (from …/libltdl3_1.5.22-4_i386.deb) …
Selecting previously deselected package libxml2.
Unpacking libxml2 (from …/libxml2_2.6.27.dfsg-6+etch1_i386.deb) …
Setting up openssl (0.9.8c-4etch5) …
Setting up ca-certificates (20070303) …
Updating certificates in /etc/ssl/certs….done.
Setting up libcurl3 (7.15.5-1etch3) …
Setting up curl (7.15.5-1etch3) …
Setting up fetchmail (6.3.6-1etch2) …
Adding system user `fetchmail’ (UID 107) …
Adding new user `fetchmail’ (UID 107) with group `nogroup’ …
Creating home directory `/var/lib/fetchmail’ …
Setting up libexpat1 (1.95.8-3.4) …
Setting up libgetopt-mixed-perl (1.008-10) …
Setting up libgmp3c2 (4.2.1+dfsg-4) …
Setting up libltdl3 (1.5.22-4) …
Setting up libxml2 (2.6.27.dfsg-6+etch1) …
mail:/home/gtoms#
Instalasi dan konfigurasi Zimbra Collaboration Suite (ZCS) 5.0.18
mail:/home/gtoms#wget http://h.yimg.com/lo/downloads/5.0.18_GA/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635.tgz
mail:/home/gtoms# tar xvfz zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635.tgz
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-ldap_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-logger_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-store_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-core_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-mta_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-spell_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-apache_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-snmp_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/packages/zimbra-proxy_5.0.18_GA_3011.DEBIAN4.0_i386.deb
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/ZCS_Toaster.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/MigrationWizard_Domino.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/quick_start.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/Import_Wizard_Outlook.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/Zimbra Schema.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/admin.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/MigrationWizard.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/User Instructions for ZCS Import Wizard.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/Zimbra iCalendar Migration Guide.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/ZWC User Guide for 5_0.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/OSmultiserverinstall.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/Zimbra_Release_Note.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/en_US/RNZCSO_2005Beta.pdf
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/zcl.txt
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/zimbra_public_eula_2.1.txt
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/docs/YPL.txt
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/data/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/data/versions-init.sql
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/bin/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/bin/get_plat_tag.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/bin/zmdbintegrityreport
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/globals.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/modules/
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/modules/getconfig.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/modules/packages.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/modules/postinstall.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/addUser.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/util/utilfunc.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/install.sh
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/readme_binary_en_US.txt
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/README.txt
zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635/readme_source_en_US.txt
mail:/home/gtoms#
mail:/home/gtoms# cd zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635#
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635# ./install.sh -l
Operations logged to /tmp/install.log.2742
Checking for existing installation…
zimbra-ldap…NOT FOUND
zimbra-logger…NOT FOUND
zimbra-mta…NOT FOUND
zimbra-snmp…NOT FOUND
zimbra-store…NOT FOUND
zimbra-apache…NOT FOUND
zimbra-spell…NOT FOUND
zimbra-proxy…NOT FOUND
zimbra-archiving…NOT FOUND
zimbra-convertd…NOT FOUND
zimbra-cluster…NOT FOUND
zimbra-core…NOT FOUND
PLEASE READ THIS AGREEMENT CAREFULLY BEFORE USING THE SOFTWARE.
ZIMBRA, INC. (“ZIMBRA”) WILL ONLY LICENSE THIS SOFTWARE TO YOU IF YOU
FIRST ACCEPT THE TERMS OF THIS AGREEMENT. BY DOWNLOADING OR INSTALLING
THE SOFTWARE, OR USING THE PRODUCT, YOU ARE CONSENTING TO BE BOUND BY
THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS
AGREEMENT, THEN DO NOT DOWNLOAD, INSTALL OR USE THE PRODUCT.
License Terms for the Zimbra Collaboration Suite:
http://www.zimbra.com/license/zimbra_public_eula_2.1.html
Press Return to continue
Checking for prerequisites…
FOUND: NPTL
FOUND: sudo-1.6.8p12-4
FOUND: libidn11-0.6.5-1
FOUND: fetchmail-6.3.6-1etch2
FOUND: libpcre3-6.7+7.4-4
FOUND: libgmp3c2-2:4.2.1+dfsg-4
FOUND: libexpat1-1.95.8-3.4
FOUND: libxml2-2.6.27.dfsg-6+etch1
FOUND: libstdc++6-4.1.1-21
FOUND: openssl-0.9.8c-4etch5
FOUND: libltdl3-1.5.22-4
Checking for suggested prerequisites…
FOUND: perl-5.8.8
Prerequisite check complete.
Checking for installable packages
Found zimbra-core
Found zimbra-ldap
Found zimbra-logger
Found zimbra-mta
Found zimbra-snmp
Found zimbra-store
Found zimbra-apache
Found zimbra-spell
Found zimbra-proxy
Select the packages to install
Install zimbra-ldap [Y] tekan enter
Install zimbra-logger [Y] tekan enter
Install zimbra-mta [Y] tekan enter
Install zimbra-snmp [Y] tekan enter
Install zimbra-store [Y] tekan enter
Install zimbra-apache [Y] tekan enter
Install zimbra-spell [Y] tekan enter
Install zimbra-proxy [N] tekan enter
Checking required space for zimbra-core
checking space for zimbra-store
Installing:
zimbra-core
zimbra-ldap
zimbra-logger
zimbra-mta
zimbra-snmp
zimbra-store
zimbra-apache
zimbra-spell
The system will be modified. Continue? [N] y
Removing /opt/zimbra
Removing zimbra crontab entry…done.
done.
Cleaning up zimbra init scripts…done.
Cleaning up /etc/ld.so.conf…done.
Cleaning up /etc/security/limits.conf…done.
Finished removing Zimbra Collaboration Suite.
Installing packages
zimbra-core……zimbra-core_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
zimbra-ldap……zimbra-ldap_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
zimbra-logger……zimbra-logger_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
zimbra-mta……zimbra-mta_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
zimbra-snmp……zimbra-snmp_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
zimbra-store……zimbra-store_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
zimbra-apache……zimbra-apache_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
zimbra-spell……zimbra-spell_5.0.18_GA_3011.DEBIAN4.0_i386.deb…done
Operations logged to /tmp/zmsetup.09122009-180943.log
Setting defaults… MX: mail.galxxxx.co.id (202.52.217.xx)
Interface: 202.52.217.xx
Interface: 127.0.0.1
202.52.217.xx
done.
Checking for port conflicts
Main menu
1) Common Configuration:
2) zimbra-ldap: Enabled
3) zimbra-store: Enabled
+Create Admin User: yes
+Admin user to create: admin@mail.galxxxx.co.id
******* +Admin Password UNSET
+Enable automated spam training: yes
+Spam training user: spam.bxchkfqpuo@mail.galxxxx.co.id
+Non-spam(Ham) training user: ham.mo9uye3r4@mail.galxxxx.co.id
+Global Documents Account: wiki@mail.galxxxx.co.id
+SMTP host: mail.galxxxx.co.id
+Web server HTTP port: 80
+Web server HTTPS port: 443
+Web server mode: http
+IMAP server port: 143
+IMAP server SSL port: 993
+POP server port: 110
+POP server SSL port: 995
+Use spell check server: yes
+Spell server URL: http://mail.galxxxx.co.id:7780/aspell.php
4) zimbra-mta: Enabled
5) zimbra-snmp: Enabled
6) zimbra-logger: Enabled
7) zimbra-spell: Enabled
8) Default Class of Service Configuration:
r) Start servers after configuration yes
s) Save config to file
x) Expand menu
q) Quit
Address unconfigured (**) items (? – help) 3
Store configuration
1) Status: Enabled
2) Create Admin User: yes
3) Admin user to create: admin@mail.galxxxx.co.id
** 4) Admin Password UNSET
5) Enable automated spam training: yes
6) Spam training user: spam.bxchkfqpuo@mail.galxxxx.co.id
7) Non-spam(Ham) training user: ham.mo9uye3r4@mail.galxxxx.co.id
8) Global Documents Account: wiki@mail.galxxxx.co.id
9) SMTP host: mail.galxxxx.co.id
10) Web server HTTP port: 80
11) Web server HTTPS port: 443
12) Web server mode: http
13) IMAP server port: 143
14) IMAP server SSL port: 993
15) POP server port: 110
16) POP server SSL port: 995
17) Use spell check server: yes
18) Spell server URL: http://mail.galxxxx.co.id:7780/aspell.php
Select, or ‘r’ for previous menu [r] 4
Password for admin@mail.galxxxx.co.id (min 6 characters): [cH9bdJrG] xyxyxyxyxyx
Store configuration
1) Status: Enabled
2) Create Admin User: yes
3) Admin user to create: admin@mail.galxxxx.co.id
4) Admin Password set
5) Enable automated spam training: yes
6) Spam training user: spam.bxchkfqpuo@mail.galxxxx.co.id
7) Non-spam(Ham) training user: ham.mo9uye3r4@mail.galxxxx.co.id
8) Global Documents Account: wiki@mail.galxxxx.co.id
9) SMTP host: mail.galxxxx.co.id
10) Web server HTTP port: 80
11) Web server HTTPS port: 443
12) Web server mode: http
13) IMAP server port: 143
14) IMAP server SSL port: 993
15) POP server port: 110
16) POP server SSL port: 995
17) Use spell check server: yes
18) Spell server URL: http://mail.galxxxx.co.id:7780/aspell.php
Select, or ‘r’ for previous menu [r] r
Main menu
1) Common Configuration:
2) zimbra-ldap: Enabled
3) zimbra-store: Enabled
4) zimbra-mta: Enabled
5) zimbra-snmp: Enabled
6) zimbra-logger: Enabled
7) zimbra-spell: Enabled
8) Default Class of Service Configuration:
r) Start servers after configuration yes
s) Save config to file
x) Expand menu
q) Quit
*** CONFIGURATION COMPLETE – press ‘a’ to apply
Select from menu, or press ‘a’ to apply config (? – help) a
Save configuration data to a file? [Yes]
Save config in file: [/opt/zimbra/config.8248]
Saving config in /opt/zimbra/config.8248…done.
The system will be modified – continue? [No] y
Operations logged to /tmp/zmsetup.09122009-180943.log
Setting local config values…done.
Setting up CA…done.
Deploying CA to /opt/zimbra/conf/ca …done.
Creating SSL certificate…done.
Installing mailboxd SSL certificates…done.
Initializing ldap…done.
Setting replication password…done.
Setting Postfix password…done.
Setting amavis password…done.
Setting nginx password…done.
Saving CA in ldap …done.
Creating server entry for mail.galxxxx.co.id…done.
Saving SSL Certificate in ldap …done.
Setting spell check URL…done.
Setting service ports on mail.galxxxx.co.id…done.
Adding mail.galxxxx.co.id to zimbraMailHostPool in default COS…done.
Installing skins…
lemongrass
zmail
bare
sand
lavender
bones
waves
beach
hotrod
sky
steel
yahoo
done.
Setting zimbraFeatureIMEnabled=FALSE…done.
Setting zimbraFeatureTasksEnabled=TRUE…done.
Setting zimbraFeatureBriefcasesEnabled=TRUE…done.
Setting zimbraFeatureNotebookEnabled=TRUE…done.
Setting MTA auth host…done.
Setting TimeZone Preference…done.
Creating domain mail.galxxxx.co.id…done.
Creating user admin@mail.galxxxx.co.id…done.
Creating postmaster alias…done.
Creating user wiki@mail.galxxxx.co.id…done.
Creating user spam.bxchkfqpuo@mail.galxxxx.co.id…done.
Creating user ham.mo9uye3r4@mail.galxxxx.co.id…done.
Setting spam training accounts…done.
Initializing store sql database…done.
Setting zimbraSmtpHostname for mail.galxxxx.co.id…done.
Initializing logger sql database…done.
Initializing mta config…done.
Configuring SNMP…done.
Setting services on mail.galxxxx.co.id…done.
Setting up syslog.conf…done.
You have the option of notifying Zimbra of your installation.
This helps us to track the uptake of the Zimbra Collaboration Suite.
The only information that will be transmitted is:
The VERSION of zcs installed (5.0.18_GA_3011_DEBIAN4.0)
The ADMIN EMAIL ADDRESS created (admin@mail.galxxxx.co.id)
Notify Zimbra of your installation? [Yes]
Notifying Zimbra of installation via http://www.zimbra.com/cgi-bin/notify.cgi?VER=5.0.18_GA_3011_DEBIAN4.0&MAIL=admin@mail.galxxxx.co.id
Notification complete
Starting servers…done.
Checking for deprecated zimlets…done.
Installing common zimlets…
com_zimbra_url…done.
com_zimbra_email…done.
com_zimbra_local…done.
com_zimbra_ymemoticons…done.
com_zimbra_phone…done.
com_zimbra_bulkprovision…done.
com_zimbra_cert_manager…done.
com_zimbra_date…done.
Finished installing common zimlets.
Initializing Documents…done.
Restarting mailboxd…done.
Setting up zimbra crontab…done.
Moving /tmp/zmsetup.09122009-180943.log to /opt/zimbra/log
Configuration complete – press return to exit
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635#
Sampai disini instalasi Zimbra sudah berhasil sukses tanpa error, bisa langsung dicoba ke control panel ZimbraAdmin melalui browser, melalui :
https://mail.galxxxx.co.id:7071/zimbraAdmin/
Zimbra Webmail : http://mail.galxxxx.co.id
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635# su – zimbra
zimbra@mail:~$ zmcontrol -v
Release 5.0.18_GA_3011.DEBIAN4.0 DEBIAN4.0 FOSS edition
zimbra@mail:~$ zmcontrol status
Host mail.galxxxx.co.id
antispam Running
antivirus Running
ldap Running
logger Running
mailbox Running
mta Running
snmp Running
spell Running
stats Running
zimbra@mail:~$ exit
logout
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635#
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635# netstat -nltup
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 202.52.217.xx:389 0.0.0.0:* LISTEN 10892/slapd
tcp 0 0 127.0.0.1:10024 0.0.0.0:* LISTEN 15630/amavisd (mast
tcp 0 0 127.0.0.1:10025 0.0.0.0:* LISTEN 16520/master
tcp 0 0 127.0.0.1:7306 0.0.0.0:* LISTEN 13324/mysqld
tcp 0 0 127.0.0.1:7307 0.0.0.0:* LISTEN 13635/mysqld
tcp 0 0 0.0.0.0:3310 0.0.0.0:* LISTEN 15767/clamd
tcp 0 0 0.0.0.0:465 0.0.0.0:* LISTEN 16520/master
tcp 0 0 0.0.0.0:113 0.0.0.0:* LISTEN 2065/inetd
tcp 0 0 202.52.217.xx:53 0.0.0.0:* LISTEN 2691/named
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 2691/named
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 2065/inetd
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 16520/master
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN 2691/named
tcp6 0 0 :::7072 :::* LISTEN 19162/java
tcp6 0 0 :::7777 :::* LISTEN 19162/java
tcp6 0 0 :::993 :::* LISTEN 19162/java
tcp6 0 0 :::995 :::* LISTEN 19162/java
tcp6 0 0 :::7780 :::* LISTEN 15817/httpd
tcp6 0 0 :::5222 :::* LISTEN 19162/java
tcp6 0 0 :::5223 :::* LISTEN 19162/java
tcp6 0 0 :::7335 :::* LISTEN 19162/java
tcp6 0 0 :::110 :::* LISTEN 19162/java
tcp6 0 0 :::143 :::* LISTEN 19162/java
tcp6 0 0 :::80 :::* LISTEN 19162/java
tcp6 0 0 :::7025 :::* LISTEN 19162/java
tcp6 0 0 :::5269 :::* LISTEN 19162/java
tcp6 0 0 :::53 :::* LISTEN 2691/named
tcp6 0 0 :::22 :::* LISTEN 2087/sshd
tcp6 0 0 ::1:953 :::* LISTEN 2691/named
tcp6 0 0 :::10015 :::* LISTEN 19162/java
tcp6 0 0 :::7071 :::* LISTEN 19162/java
udp 0 0 0.0.0.0:32773 0.0.0.0:* 2691/named
udp 0 0 202.52.217.xx:53 0.0.0.0:* 2691/named
udp 0 0 127.0.0.1:53 0.0.0.0:* 2691/named
udp6 0 0 :::32774 :::* 2691/named
udp6 0 0 :::53 :::* 2691/named
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635#
mail:/home/gtoms/zcs-5.0.18_GA_3011.DEBIAN4.0.20090707170635# ps axf
PID TTY STAT TIME COMMAND
—————–skip————-
2691 ? Ssl 0:00 /usr/sbin/named -u bind
10892 ? Ssl 0:03 /opt/zimbra/openldap/libexec/slapd -l LOCAL0 -4 -u zimbra -h ldap://mail.galxxxx.co.id:389 -f /opt/zimbra/conf/slapd.conf
13276 pts/0 S 0:00 /bin/sh /opt/zimbra/mysql/bin/mysqld_safe –defaults-file=/opt/zimbra/conf/my.cnf –external-locking –log-error=/opt/zimbra/log/m
13324 pts/0 Sl 0:02 \_ /opt/zimbra/mysql/libexec/mysqld –defaults-file=/opt/zimbra/conf/my.cnf –basedir=/opt/zimbra/mysql –datadir=/opt/zimbra/db/
13594 pts/0 S 0:00 /bin/sh /opt/zimbra/logger/mysql/bin/mysqld_safe –defaults-file=/opt/zimbra/conf/my.logger.cnf –external-locking –log-error=/op
13635 pts/0 Sl 0:00 \_ /opt/zimbra/logger/mysql/libexec/mysqld –defaults-file=/opt/zimbra/conf/my.logger.cnf –basedir=/opt/zimbra/logger/mysql –da
14293 ? Ss 0:00 /sbin/syslogd -a /var/lib/named/dev/log
14730 pts/0 S 0:00 /usr/bin/perl /opt/zimbra/libexec/logswatch –config-file=/opt/zimbra/conf/logswatchrc –use-cpan-file-tail –pid-file=/opt/zimbra
14732 pts/0 S 0:00 \_ /usr/bin/perl /tmp/.swatch_script.14730
14734 pts/0 S 0:00 \_ /usr/bin/perl /opt/zimbra/libexec/zmlogger
14831 pts/0 S 0:00 /usr/bin/perl /opt/zimbra/libexec/zmmtaconfig
15630 ? Ss 0:02 amavisd (master)
15990 ? S 0:00 \_ amavisd (ch2-avail)
15991 ? S 0:00 \_ amavisd (ch2-avail)
15992 ? S 0:00 \_ amavisd (ch1-avail)
15993 ? S 0:00 \_ amavisd (ch1-avail)
15994 ? S 0:00 \_ amavisd (ch1-avail)
15995 ? S 0:00 \_ amavisd (virgin child)
15996 ? S 0:00 \_ amavisd (virgin child)
15997 ? S 0:00 \_ amavisd (virgin child)
16018 ? S 0:00 \_ amavisd (virgin child)
16019 ? S 0:00 \_ amavisd (virgin child)
15680 ? Ss 0:04 /opt/zimbra/clamav/bin/freshclam –config-file=/opt/zimbra/conf/freshclam.conf -d –checks=12
15767 ? Ssl 0:12 /opt/zimbra/clamav/sbin/clamd –config-file=/opt/zimbra/conf/clamd.conf
15778 pts/0 S 0:00 /usr/bin/perl /opt/zimbra/libexec/swatch –config-file=/opt/zimbra/conf/swatchrc –use-cpan-file-tail –script-dir=/tmp -t /var/lo
15789 pts/0 S 0:00 \_ /usr/bin/perl /tmp/.swatch_script.15778
15817 ? Ss 0:00 /opt/zimbra/httpd-2.2.8/bin/httpd -k start -f /opt/zimbra/conf/httpd.conf
15822 ? S 0:00 \_ /opt/zimbra/httpd-2.2.8/bin/httpd -k start -f /opt/zimbra/conf/httpd.conf
15823 ? S 0:00 \_ /opt/zimbra/httpd-2.2.8/bin/httpd -k start -f /opt/zimbra/conf/httpd.conf
15824 ? S 0:00 \_ /opt/zimbra/httpd-2.2.8/bin/httpd -k start -f /opt/zimbra/conf/httpd.conf
15825 ? S 0:00 \_ /opt/zimbra/httpd-2.2.8/bin/httpd -k start -f /opt/zimbra/conf/httpd.conf
15826 ? S 0:00 \_ /opt/zimbra/httpd-2.2.8/bin/httpd -k start -f /opt/zimbra/conf/httpd.conf
16520 ? Ss 0:00 /opt/zimbra/postfix/libexec/master
16526 ? S 0:00 \_ qmgr -l -t fifo -u
16527 ? S 0:00 \_ pickup -l -t fifo -u
17166 ? S 0:00 \_ showq -t unix -u
17719 ? S 0:00 \_ tlsmgr -l -t unix -u
16528 ? Ss 0:00 /opt/zimbra/cyrus-sasl/sbin/saslauthd -r -a zimbra
16529 ? S 0:00 \_ /opt/zimbra/cyrus-sasl/sbin/saslauthd -r -a zimbra
16530 ? S 0:00 \_ /opt/zimbra/cyrus-sasl/sbin/saslauthd -r -a zimbra
16531 ? S 0:00 \_ /opt/zimbra/cyrus-sasl/sbin/saslauthd -r -a zimbra
16532 ? S 0:00 \_ /opt/zimbra/cyrus-sasl/sbin/saslauthd -r -a zimbra
16593 pts/0 S 0:00 /usr/bin/perl -w /opt/zimbra/libexec/zmstat-proc
16595 pts/0 S 0:00 /usr/bin/perl -w /opt/zimbra/libexec/zmstat-cpu
16597 pts/0 S 0:00 /usr/bin/perl -w /opt/zimbra/libexec/zmstat-vm
17150 pts/0 S 0:00 \_ /usr/bin/vmstat -n -S K 30
16631 pts/0 S 0:00 /usr/bin/perl -w /opt/zimbra/libexec/zmstat-fd
16633 pts/0 S 0:00 /usr/bin/perl -w /opt/zimbra/libexec/zmstat-mysql
16637 pts/0 S 0:00 /usr/bin/perl -w /opt/zimbra/libexec/zmstat-mtaqueue
19161 ? Ss 0:00 /opt/zimbra/libexec/zmmailboxdmgr start -Xms303m -Xmx303m -client -XX:NewRatio=2 -Djava.awt.headless=true -XX:MaxPermSize=128m -XX
19162 ? Sl 0:16 \_ /opt/zimbra/java/bin/java -Xms303m -Xmx303m -client -XX:NewRatio=2 -Djava.awt.headless=true -XX:MaxPermSize=128m -XX:SoftRefLR
mail:/home/gtoms# tail -f /var/log/mail.log
Sep 12 18:42:16 mail zmmailboxdmgr[24338]: status requested
Sep 12 18:42:16 mail zmmailboxdmgr[24338]: status OK
Sep 12 18:42:22 mail zmmailboxdmgr[24486]: status requested
Sep 12 18:42:22 mail zmmailboxdmgr[24486]: status OK
Sep 12 18:42:23 mail zmmailboxdmgr[24541]: status requested
Sep 12 18:42:23 mail zmmailboxdmgr[24541]: status OK
Sep 12 18:43:51 mail zmmailboxdmgr[24841]: status requested
Sep 12 18:43:51 mail zmmailboxdmgr[24841]: status OK
Sep 12 18:43:53 mail zmmailboxdmgr[24895]: status requested
Sep 12 18:43:53 mail zmmailboxdmgr[24895]: status OK
mail:/home/gtoms# tail -f /var/log/zimbra.log
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: antispam: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: antivirus: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxx.co.id: ldap: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: logger: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: mailbox: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: mta: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: snmp: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: spell: Running
Sep 12 18:44:09 mail zimbramon[24932]: 24932:info: 2009-09-12 18:44:01, STATUS: mail.galxxxx.co.id: stats: Running
Sep 12 18:44:09 mail CRON[24931]: (pam_unix) session closed for user zimbra
LOG
Setelah login ke control panel zimbradmin bisa langsung membuat New Domain galxxxx.co.id kemudian create new account user email dalam hal ini sebagai testing saya create email test@galxxxx.co.id , lalu testing kirim email ke account ini :
mail:/home/gtoms# tail -f /var/log/zimbra.log
Sep 12 18:46:35 mail postfix/smtpd[25796]: connect from mail.galxxxx.co.id[202.52.217.xx]
Sep 12 18:46:35 mail postfix/smtpd[25796]: 4DD0BC45C8: client=mail.galxxxx.co.id[202.52.217.xx]
Sep 12 18:46:35 mail postfix/cleanup[25800]: 4DD0BC45C8: message-id=<29468299.01252755994165.JavaMail.root@mail>
Sep 12 18:46:35 mail postfix/qmgr[16526]: 4DD0BC45C8: from=<test@galxxxx.co.id>, size=637, nrcpt=1 (queue active)
Sep 12 18:46:35 mail postfix/smtpd[25796]: disconnect from mail.galxxxx.co.id[202.52.217.xx]
Sep 12 18:46:35 mail amavis[15995]: (15995-01) ESMTP::10024 /opt/zimbra/data/amavisd/tmp/amavis-20090912T184635-15995: <test@galxxxx.co.id> -> <test@galxxxx.co.id> SIZE=637 Received: from mail.galxxxx.co.id ([127.0.0.1]) by localhost (mail.galxxxx.co.id [127.0.0.1]) (amavisd-new, port 10024) with ESMTP for <test@galxxxx.co.id>; Sat, 12 Sep 2009 18:46:35 +0700 (WIT)
Sep 12 18:46:35 mail amavis[15995]: (15995-01) Checking: 3D59n-i8fk3b [202.52.217.xx] <test@galxxxx.co.id> -> <test@galxxxx.co.id>
Sep 12 18:46:40 mail postfix/smtpd[25830]: connect from localhost.localdomain[127.0.0.1]
Sep 12 18:46:40 mail postfix/smtpd[25830]: 8A160C45CD: client=localhost.localdomain[127.0.0.1]
Sep 12 18:46:40 mail postfix/cleanup[25800]: 8A160C45CD: message-id=<29468299.01252755994165.JavaMail.root@mail>
Sep 12 18:46:40 mail postfix/qmgr[16526]: 8A160C45CD: from=<test@galxxxx.co.id>, size=1250, nrcpt=1 (queue active)
Sep 12 18:46:40 mail amavis[15995]: (15995-01) FWD via SMTP: <test@galxxxx.co.id> -> <test@galxxxx.co.id>,BODY=7BIT 250 2.6.0 Ok, id=15995-01, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as 8A160C45CD
Sep 12 18:46:40 mail amavis[15995]: (15995-01) Passed CLEAN, [202.52.217.xx] [202.52.217.xx] <test@galxxxx.co.id> -> <test@galxxxx.co.id>, Message-ID: <29468299.01252755994165.JavaMail.root@mail>, mail_id: 3D59n-i8fk3b, Hits: 0.101, size: 637, queued_as: 8A160C45CD, 5213 ms
Sep 12 18:46:40 mail postfix/smtp[25801]: 4DD0BC45C8: to=<test@galxxxx.co.id>, relay=127.0.0.1[127.0.0.1]:10024, delay=5.3, delays=0.06/0.04/0.03/5.2, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 8A160C45CD)
Sep 12 18:46:40 mail amavis[15995]: (15995-01) extra modules loaded: /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/autosplit.ix, /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/randomize.al, IO/Socket/SSL.pm, Net/LDAP/Extension.pm, Net/SSLeay.pm
Sep 12 18:46:40 mail postfix/smtpd[25830]: disconnect from localhost.localdomain[127.0.0.1]
Sep 12 18:46:40 mail postfix/qmgr[16526]: 4DD0BC45C8: removed
Sep 12 18:46:40 mail postfix/lmtp[25831]: 8A160C45CD: to=<test@galxxxx.co.id>, relay=mail.galxxxx.co.id[202.52.217.xx]:7025, delay=0.24, delays=0.02/0.06/0/0.15, dsn=2.1.5, status=sent (250 2.1.5 OK)
Sep 12 18:46:40 mail postfix/qmgr[16526]: 8A160C45CD: removed
tes kirim email ke yahoo :
Sep 12 18:50:04 mail postfix/smtpd[26973]: connect from mail.galxxxx.co.id[202.52.217.xx]
Sep 12 18:50:04 mail postfix/smtpd[26973]: EFCB3C45C8: client=mail.galxxxx.co.id[202.52.217.xx]
Sep 12 18:50:04 mail postfix/cleanup[26977]: EFCB3C45C8: message-id=<22081762.31252756204601.JavaMail.root@mail>
Sep 12 18:50:05 mail postfix/qmgr[16526]: EFCB3C45C8: from=<test@galxxxx.co.id>, size=716, nrcpt=1 (queue active)
Sep 12 18:50:05 mail postfix/smtpd[26973]: disconnect from mail.galxxxx.co.id[202.52.217.xx]
Sep 12 18:50:05 mail amavis[15996]: (15996-01) ESMTP::10024 /opt/zimbra/data/amavisd/tmp/amavis-20090912T185005-15996: <test@galxxxx.co.id> -> <henrygultom@yahoo.com> SIZE=716 Received: from mail.galxxxx.co.id ([127.0.0.1]) by localhost (mail.galxxxx.co.id [127.0.0.1]) (amavisd-new, port 10024) with ESMTP for <henrygultom@yahoo.com>; Sat, 12 Sep 2009 18:50:05 +0700 (WIT)
Sep 12 18:50:05 mail amavis[15996]: (15996-01) Checking: pdIig-o4ZKSI [202.52.217.xx] <test@galxxxx.co.id> -> <henrygultom@yahoo.com>
Sep 12 18:50:10 mail postfix/smtpd[27080]: connect from localhost.localdomain[127.0.0.1]
Sep 12 18:50:10 mail postfix/smtpd[27080]: 3875AC45CD: client=localhost.localdomain[127.0.0.1]
Sep 12 18:50:10 mail postfix/cleanup[26977]: 3875AC45CD: message-id=<22081762.31252756204601.JavaMail.root@mail>
Sep 12 18:50:10 mail postfix/qmgr[16526]: 3875AC45CD: from=<test@galxxxx.co.id>, size=1179, nrcpt=1 (queue active)
Sep 12 18:50:10 mail amavis[15996]: (15996-01) FWD via SMTP: <test@galxxxx.co.id> -> <henrygultom@yahoo.com>,BODY=7BIT 250 2.6.0 Ok, id=15996-01, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as 3875AC45CD
Sep 12 18:50:10 mail amavis[15996]: (15996-01) Passed CLEAN, [202.52.217.xx] [202.52.217.xx] <test@galxxxx.co.id> -> <henrygultom@yahoo.com>, Message-ID: <22081762.31252756204601.JavaMail.root@mail>, mail_id: pdIig-o4ZKSI, Hits: 0.101, size: 716, queued_as: 3875AC45CD, 5261 ms
Sep 12 18:50:10 mail postfix/smtp[26978]: EFCB3C45C8: to=<henrygultom@yahoo.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=5.4, delays=0.06/0.05/0.03/5.2, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 3875AC45CD)
Sep 12 18:50:10 mail amavis[15996]: (15996-01) extra modules loaded: /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/autosplit.ix, /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/randomize.al, IO/Socket/SSL.pm, Net/LDAP/Extension.pm, Net/SSLeay.pm
Sep 12 18:50:10 mail postfix/qmgr[16526]: EFCB3C45C8: removed
kirim email dari yahoo ke zimbra :
Sep 12 18:52:27 mail postfix/smtpd[27999]: connect from n15b.bullet.mail.mud.yahoo.com[68.142.207.236]
Sep 12 18:52:28 mail postfix/smtpd[27999]: B6F31C45C8: client=n15b.bullet.mail.mud.yahoo.com[68.142.207.236]
Sep 12 18:52:29 mail postfix/cleanup[28003]: B6F31C45C8: message-id=<67749.82257.qm@web63704.mail.re1.yahoo.com>
Sep 12 18:52:29 mail postfix/qmgr[16526]: B6F31C45C8: from=<henrygultom@yahoo.com>, size=2739, nrcpt=1 (queue active)
Sep 12 18:52:29 mail amavis[15997]: (15997-01) ESMTP::10024 /opt/zimbra/data/amavisd/tmp/amavis-20090912T185229-15997: <henrygultom@yahoo.com> -> <test@galxxxx.co.id> SIZE=2739 Received: from mail.galxxxx.co.id ([127.0.0.1]) by localhost (mail.galxxxx.co.id [127.0.0.1]) (amavisd-new, port 10024) with ESMTP for <test@galxxxx.co.id>; Sat, 12 Sep 2009 18:52:29 +0700 (WIT)
Sep 12 18:52:29 mail amavis[15997]: (15997-01) Checking: qfZUA3U0F5yF [68.142.207.236] <henrygultom@yahoo.com> -> <test@galxxxx.co.id>
Sep 12 18:52:29 mail clamd[15767]: SelfCheck: Database status OK.
Sep 12 18:52:29 mail postfix/smtpd[27999]: disconnect from n15b.bullet.mail.mud.yahoo.com[68.142.207.236]
Sep 12 18:52:33 mail postfix/smtpd[28014]: connect from localhost.localdomain[127.0.0.1]
Sep 12 18:52:33 mail postfix/smtpd[28014]: E2885C45CD: client=localhost.localdomain[127.0.0.1]
Sep 12 18:52:33 mail postfix/cleanup[28003]: E2885C45CD: message-id=<67749.82257.qm@web63704.mail.re1.yahoo.com>
Sep 12 18:52:33 mail postfix/qmgr[16526]: E2885C45CD: from=<henrygultom@yahoo.com>, size=3337, nrcpt=1 (queue active)
Sep 12 18:52:34 mail amavis[15997]: (15997-01) FWD via SMTP: <henrygultom@yahoo.com> -> <test@galxxxx.co.id>,BODY=7BIT 250 2.6.0 Ok, id=15997-01, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as E2885C45CD
Sep 12 18:52:34 mail amavis[15997]: (15997-01) Passed CLEAN, [68.142.207.236] [125.161.183.35] <henrygultom@yahoo.com> -> <test@galxxxx.co.id>, Message-ID: <67749.82257.qm@web63704.mail.re1.yahoo.com>, mail_id: qfZUA3U0F5yF, Hits: 0.001, size: 2736, queued_as: E2885C45CD, 4442 ms
Sep 12 18:52:34 mail amavis[15997]: (15997-01) extra modules loaded: /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/autosplit.ix, /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/randomize.al, IO/Socket/SSL.pm, Net/LDAP/Extension.pm, Net/SSLeay.pm
Sep 12 18:52:34 mail postfix/smtp[28004]: B6F31C45C8: to=<test@galxxxx.co.id>, relay=127.0.0.1[127.0.0.1]:10024, delay=5.5, delays=1.1/0.02/0.03/4.4, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as E2885C45CD)
Sep 12 18:52:34 mail postfix/qmgr[16526]: B6F31C45C8: removed
Sep 12 18:52:34 mail postfix/smtpd[28014]: disconnect from localhost.localdomain[127.0.0.1]
Sep 12 18:52:34 mail postfix/lmtp[28015]: E2885C45CD: to=<test@galxxxx.co.id>, relay=mail.galxxxx.co.id[202.52.217.xx]:7025, delay=0.31, delays=0.03/0.06/0/0.21, dsn=2.1.5, status=sent (250 2.1.5 OK)
Sep 12 18:52:34 mail postfix/qmgr[16526]: E2885C45CD: removed
Log menggunakan mail client(POP3) menggunakan koneksi internet 3G IM2 :
test@galxxxx.co.id ke henry.gultom@gmail.com
Sep 12 19:01:20 mail postfix/smtpd[31176]: connect from unknown[125.161.183.35]
Sep 12 19:01:20 mail postfix/smtpd[31176]: setting up TLS connection from unknown[125.161.183.35]
Sep 12 19:01:20 mail postfix/smtpd[31176]: TLS connection established from unknown[125.161.183.35]: TLSv1 with cipher RC4-MD5 (128/128 bits)
Sep 12 19:01:20 mail saslauthd[16529]: zmauth: authenticating against elected url ‘https://mail.galxxxx.co.id:7071/service/admin/soap/’ …
Sep 12 19:01:21 mail saslauthd[16529]: zmpost: url=’https://mail.galxxxx.co.id:7071/service/admin/soap/’ returned buffer->data='<soap:Envelope xmlns:soap=”http://www.w3.org/2003/05/soap-envelope”><soap:Header><context xmlns=”urn:zimbra”><change token=”9″/></context></soap:Header><soap:Body><AuthResponse xmlns=”urn:zimbraAccount”><authToken>0_e2d28a81cb41d650b819e8d7fba34e2655416083_69643d33363a63663630373939622d633232352d
343539632d626566352d3066386632383135343131663b6578703d31333a313235323932393638313334353b74797
0653d363a7a696d6272613b</authToken><lifetime>172799999</lifetime><skin>beach</skin></AuthResponse></soap:Body></soap:Envelope>’, hti->error=”
Sep 12 19:01:21 mail saslauthd[16529]: auth_zimbra: test@galxxxx.co.id auth OK
Sep 12 19:01:21 mail postfix/smtpd[31176]: 81323C45C8: client=unknown[125.161.183.35], sasl_method=LOGIN, sasl_username=test@galxxxx.co.id
Sep 12 19:01:21 mail postfix/cleanup[31180]: 81323C45C8: message-id=<001601ca33a1$532d4f30$1801a8c0@compaqdad7864c>
Sep 12 19:01:21 mail postfix/qmgr[16526]: 81323C45C8: from=<test@galxxxx.co.id>, size=1498, nrcpt=1 (queue active)
Sep 12 19:01:21 mail postfix/smtpd[31176]: disconnect from unknown[125.161.183.35]
Sep 12 19:01:21 mail amavis[16018]: (16018-01) ESMTP::10024 /opt/zimbra/data/amavisd/tmp/amavis-20090912T190121-16018: <test@galxxxx.co.id> -> <henry.gultom@gmail.com> SIZE=1498 Received: from mail.galxxxx.co.id ([127.0.0.1]) by localhost (mail.galxxxx.co.id [127.0.0.1]) (amavisd-new, port 10024) with ESMTP for <henry.gultom@gmail.com>; Sat, 12 Sep 2009 19:01:21 +0700 (WIT)
Sep 12 19:01:21 mail amavis[16018]: (16018-01) Checking: MpIhKA8slccq [125.161.183.35] <test@galxxxx.co.id> -> <henry.gultom@gmail.com>
Sep 12 19:01:26 mail postfix/smtpd[31184]: connect from localhost.localdomain[127.0.0.1]
Sep 12 19:01:26 mail postfix/smtpd[31184]: EF1B0C45CD: client=localhost.localdomain[127.0.0.1]
Sep 12 19:01:26 mail postfix/cleanup[31180]: EF1B0C45CD: message-id=<001601ca33a1$532d4f30$1801a8c0@compaqdad7864c>
Sep 12 19:01:27 mail postfix/qmgr[16526]: EF1B0C45CD: from=<test@galxxxx.co.id>, size=1963, nrcpt=1 (queue active)
Sep 12 19:01:27 mail amavis[16018]: (16018-01) FWD via SMTP: <test@galxxxx.co.id> -> <henry.gultom@gmail.com>,BODY=7BIT 250 2.6.0 Ok, id=16018-01, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as EF1B0C45CD
Sep 12 19:01:27 mail amavis[16018]: (16018-01) Passed CLEAN, [125.161.183.35] [125.161.183.35] <test@galxxxx.co.id> -> <henry.gultom@gmail.com>, Message-ID: <001601ca33a1$532d4f30$1801a8c0@compaqdad7864c>, mail_id: MpIhKA8slccq, Hits: 0.102, size: 1498, queued_as: EF1B0C45CD, 5255 ms
Sep 12 19:01:27 mail postfix/smtp[31181]: 81323C45C8: to=<henry.gultom@gmail.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=5.6, delays=0.3/0.02/0.03/5.2, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as EF1B0C45CD)
Sep 12 19:01:27 mail amavis[16018]: (16018-01) extra modules loaded: /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/autosplit.ix, /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/Net/SSLeay/randomize.al, IO/Socket/SSL.pm, Net/LDAP/Extension.pm, Net/SSLeay.pm
Sep 12 19:01:27 mail postfix/smtpd[31184]: disconnect from localhost.localdomain[127.0.0.1]
Sep 12 19:01:27 mail postfix/qmgr[16526]: 81323C45C8: removed
Sep 12 19:01:32 mail postfix/smtp[31185]: EF1B0C45CD: to=<henry.gultom@gmail.com>, relay=gmail-smtp-in.l.google.com[209.85.222.74]:25, delay=5.2, delays=0.06/0.07/1.7/3.4, dsn=2.0.0, status=sent (250 2.0.0 OK 1252757142 6si20330525pzk.110)
Sep 12 19:01:32 mail postfix/qmgr[16526]: EF1B0C45CD: removed
Tengkiew…
thanks pak tutor nya keren..