catatanlepas.com

  • Increase font size
  • Default font size
  • Decrease font size
  • default color
  • black color
Home Komputer Aplikasi Linux Instalasi Clamav, Spamassassin, dan MailScanner Pada Postfix di Centos 5.4

Instalasi Clamav, Spamassassin, dan MailScanner Pada Postfix di Centos 5.4

Email Cetak PDF

I. Pendahuluan

Pada artikel sebelumnya, kita sudah membuat mail server postfix di Centos 5.4. Namun, sebenarnya itu belum sempurna karena mail server itu belum dilengkapi dengan antivirus dan anti spam. Maka dari itu, artikel ini akan menjelaskan bagaimana cara menginstal antivirus dan antispam pada postfix.

II. Langkah-Langkah

1. Instal Clamav
Clamav merupakan software anti virus yang digunakan untuk UNIX. Software ini didesain untuk men-scan email dan terintegrasi dengan mail server. Paket clamav menyediakan sebuah daemon yang flexible dan scalable multi threaded, sebuah comman di line scanner, dan sebuah tool untuk update otomatis via internet. Clamav dapat terintegrasi dengan baik di Mail Scanner. Berikut adalah langkah-langkah menginstalnya:
# yum -y install yum-priorities
# wget http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.i386.rpm 
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
# rpm -K rpmforge-release-0.3.6-1.el5.rf.*.rpm 
# rpm -i rpmforge-release-0.3.6-1.el5.rf.*.rpm
# yum -y install clamav clamd unrar

Setelah menginstal antivirus, kita akan mengkonfigurasinya dengan cara:
# vi /etc/sysconfig/i18n
Rubah LANG="en_US.UTF-8" menjadi LANG="en_US"

2. Install Mail Scanner
Mail scanner merupakan software open source yang digunakan untuk men-scan seluruh email dari virus-virus, spam dan serangan-serangan sekurity yang lain. Mailscanner mengkombinasikan program-program secara bersama-sama untuk menghindari spam dan memblok virus-virus. Berikut adalah langkah-langkahnya:
# wget http://www.mailscanner.info/files/4/rpm/MailScanner-4.78.17-1.rpm.tar.gz
# tar -zxvf MailScanner-4.78.17-1.rpm.tar.gz
# cd MailScanner-4.78.17-1
# ./install.sh
Setelah itu kita mengkonfigurasi mailscanner seperti berikut:
# cd /etc/MailScanner/
# mv MailScanner.conf MailScanner.conf.orig
# cat MailScanner.conf.orig | egrep ^[^#] > MailScanner.conf
Rubah file MailScanner.conf menjadi:
Run As User = postfix
Run As Group = postfix
Incoming Queue Dir = /var/spool/postfix/hold
Outgoing Queue Dir = /var/spool/postfix/incoming
MTA = postfix
Incoming Work Group = clamav
Incoming Work Permissions = 0640
Virus Scanners = clamd
Clamd Socket = /tmp/clamd.socket
Clamd Lock File = /var/lock/subsys/clamd
SpamAssassin User State Dir = /var/spool/MailScanner/spamassassin
Quarantine User = root
Quarantine Group = apache
Quarantine Permissions = 0660
Quarantine Whole Message = yes
Quarantine Whole Message As Queue Files = no
Detailed Spam Report = yes
Include Scores In SpamAssassin Report = yes
Spam Actions = store
High Scoring Spam Actions = store
Always Looked Up Last = &MailWatchLogging
Is Definitely Not Spam = &SQLWhitelist
Is Definitely Spam = &SQLBlacklist
Filename Rules = %etc-dir%/filename.rules
Filetype Rules = %etc-dir%/filetype.rules
Dangerous Content Scanning = %rules-dir%/content.scanning.rules
# mkdir /var/spool/MailScanner/spamassassin/
# chown -R postfix:postfix /var/spool/MailScanner/

3. Install SpamAssassin
Spamassassin merupakan software open source yang digunakan untuk memfilter sebuah email supaya mengetahui apakah sebuah email termasuk kategori spam atau tidak. SpamAssassin merupakan program yang flexibel, mudah untuk di extend. MailScanner merekomendasikan untuk menginstal spamassassin dari .tar.gz atau melalui perl shell. Di artikel ini menggunakan perl shell. Namun sebelumnya cek terlebih dahulu apakah spamassassin sudah ada dalam sistem kita atau tidak dengan cara:
 # rpm -qa | grep spamassassin
Jika memang sudah ada, hilangkan spamassassin dengan cara:
 # yum remove spamassassin
Kemudian kita instal spamassassin dengan cara:
# perl -MCPAN -e shell
tulis no ketika ditanya untuk manual configuration.
cpan> install Net::DNS
cpan> install Mail::SpamAssassin
cpan> quit
Jika ada error seperti berikut:
 cpan> install Net::DNS
Please check, if the URLs I found in your configuration file () are valid.
The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'
Could not fetch modules/03modlist.data.gz
Going to write /root/.cpan/Metadata
Warning: Cannot install Net:DNS, don't know what it is.
Try the command
i /Net:DNS/
to find objects with matching identifiers.
cpan> install Mail::SpamAssassin
Warning: Cannot install Mail::SpamAssassin, don't know what it is.
Try the command
    i /Mail::SpamAssassin/ to find objects with matching identifiers.

Maka penulis melakukan hal-hal berikut ini (Masih dalam CPAN prompt):

cpan> o conf urllist
cpan> o conf urllist shift
Pilih server CPAN di http://www.cpan.org/SITES.html. Karena penulis tinggal di Indonesia, maka penulis memilih ftp://cermin.lipi.go.id/pub/CPAN/ cpan> o conf urllist push ftp://cermin.lipi.go.id/pub/CPAN/
cpan> o conf urllist
cpan> o conf commit
cpan> exit
# perl -MCPAN -e shell
cpan> install Bundle::CPAN
cpan> install Net::DNS
cpan> install NetAddr::IP
cpan> install Mail::SPF
cpan> install IP::Country
cpan> install Razor2
cpan> install Net::Ident
cpan> install IO::Socket::INET6
cpan> install Mail::DKIM
cpan> install Encode::Detect
cpan> install Mail::SpamAssassin
Dengan demikian, SpamAssassin sudah terinstal dalam sistem.

 
4. Konfigurasi Postfix
Kemudian, kita mengkonfigurasi postfix agar terintegrasi antara postfix dengan antivirus. Berikut adalah langkah-langkahnya:
# touch /etc/postfix/header_checks
# echo "/^Received:/ HOLD" > /etc/postfix/header_checks
# vi /etc/postfix/main.cf
Tambahkan baris seperti ini:
header_checks = regexp:/etc/postfix/header_checks

Jalankan perintah-perintah berikut:
# postfix stop
# chkconfig --level 345 clamd on
# /etc/init.d/clamd start

5. Instal Mailwatch
Mailwatch merupakan software untuk menampilkan Mailscanner yang dapat diakses melalui web-based. Berikut adalah langkah-langkahnya:
# yum -y install php-gd
# cd /tmp/
# wget http://sourceforge.net/projects/mailwatch/files/mailwatch/1.0.4/mailwatch-1.0.4.tar.gz/download
# tar -zxvf mailwatch-1.0.4.tar.gz
# mysql -p < /tmp/mailwatch-1.0.4/create.sql
Troubleshoot:

Ketika menuliskan perintah di atas, ada error seperti berikut:

ERROR 1064 (42000) at line 4: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-------------------------------------------------------
CREATE DATABASE /*' at line 1


Solusi:
Hapus line 4 yang hanya berisi ------------------- kemudian ketikkan perintah semula dan seharusnya sudah tidak ada masalah lagi.

6. Konfigurasi mysql
#mysql -u root -p
mysql>GRANT ALL ON mailscanner.* TO mailwatch@localhost IDENTIFIED BY 'password';
mysql>FLUSH PRIVILEGES;
mysql>quit;
7. Konfigurasi Mailwatch
# vi /tmp/mailwatch-1.0.4/MailWatch.pm
rubah di dalam file tersebut menjadi seperti di bawah ini:
my($db_user) = 'mailwatch';
my($db_pass) = 'password';
# mv /tmp/mailwatch-1.0.4/MailWatch.pm /usr/lib/MailScanner/MailScanner/CustomFunctions/
# cd /tmp/mailwatch-1.0.4/; mv mailscanner/ /var/www/html/
# mkdir /var/www/html/mailscanner/temp/
# chown -R apache:apache /var/www/html/mailscanner/
Kemudian lakukan perintah-perintah berikut:
# chown root:apache /var/www/html/mailscanner/images/ /var/www/html/mailscanner/images/cache/ 
# chmod ug+rwx /var/www/html/mailscanner/images/ /var/www/html/mailscanner/images/cache/ 
# chmod ug+rw /var/www/html/mailscanner/temp/ 
# vi /var/www/html/mailscanner/conf.php.example 
define(DB_USER, 'mailwatch'); 
define(DB_PASS, 'password'); 
define(QUARANTINE_USE_FLAG, true); 
# mv /var/www/html/mailscanner/conf.php.example /var/www/html/mailscanner/conf.php 
# vi /tmp/mailwatch-1.0.4/SQLBlackWhiteList.pm  Rubah menjadi: my($db_user) = 'mailwatch'; my($db_pass) = 'password'; 
# mv /tmp/mailwatch-1.0.4/SQLBlackWhiteList.pm /usr/lib/MailScanner/MailScanner/CustomFunctions/
# mysql mailscanner -u mailwatch -p 
Masukkan passwordnya: 
> INSERT INTO users VALUES ('admin',md5('password'),'admin','A','0','0','0','0','0'); 
> \q
8. Konfigurasi Spamassassin
# vi /etc/MailScanner/spam.assassin.prefs.conf 
Rubah menjadi:
bayes_path /var/spool/MailScanner/spamassassin/bayes
bayes_file_mode 0660
Kemudian lakukan perintah-perintah berikut:
# chown postfix:apache /var/spool/MailScanner/spamassassin/ /var/spool/MailScanner/spamassassin/bayes/
# chmod g+rws /var/spool/MailScanner/spamassassin/
# chmod g+rw /var/spool/MailScanner/spamassassin/bayes_*

9. Tes Mail Scanner
# spamassassin -D -p /etc/MailScanner/spam.assassin.prefs.conf --lint
Dan seharusnya ada tampilan seperti berikut:



10. Konfigurasi GeoIP
Agar database geoip terupdate di web interface mailwatch, maka lakukan langkah-langkah berikut ini:
# vi /var/www/html/mailscanner/geoip_update.php 
Rubah: 
dbquery("LOAD DATA INFILE '".$base.'/'.$file2."' INTO TABLE geoip_country FIELDS TERMINATED BY ',' ENCLOSED BY '\"'");
menjadi:
dbquery("LOAD DATA LOCAL INFILE '".$base.'/'.$file2."' INTO TABLE geoip_country FIELDS TERMINATED BY ',' ENCLOSED BY '\"'");
# vi /etc/cron.daily/clean.quarantine
Cek bahwa di file tersebut nilai disabled=1 ==> $disabled = 1; 
# vi /tmp/mailwatch-1.0.4/tools/db_clean.php
Rubah menjadi seperti berikut: (Hapus huruf n)==> #!/usr/bin/php -q 
# cp /tmp/mailwatch-1.0.4/tools/quarantine_maint.php /usr/local/bin/ 
# cp /tmp/mailwatch-1.0.4/tools/db_clean.php /usr/local/bin/ 
# chmod +x /usr/local/bin/quarantine_maint.php /usr/local/bin/db_clean.php 
# echo "/usr/local/bin/quarantine_maint.php --clean" > /etc/cron.daily/mailwatch_quarantine_maint.sh
# echo "/usr/local/bin/db_clean.php" > /etc/cron.daily/mailwatch_db_clean.sh
# chmod +x /etc/cron.daily/mailwatch*
# cp /tmp/mailwatch-1.0.4/mailq.php /usr/local/bin/
# crontab -e
0-59 * * * *    /usr/local/bin/mailq.php

11. Konfigurasi whitelist

Masuk ke mysql sebagai mailwatch. Lalu pilih database mailscanner dan tabel whitelist. Pada tabel tersebut, masukkan nilai-nilai sebagai berikut:

to_address = default
to_domain = default
from_address = 127.0.0.1

Untuk lebih mudahnya, lebih baik menggunakan phpmyadmin, sehingga akan terlihat seperti berikut:


12. Konfigurasi MailScanner
Berikutnya, kita akan mengkonfigurasi mailscanner. Perlu diperhatikan bahwa untuk memisahkan sebuah skrip dalam satu baris harus menggunakan Tab. Berikut adalah langkah-langkahnya:

# cd /etc/MailScanner/ 
# touch filename.rules filetype.rules filename.rules.allowall.conf filetype.rules.allowall.conf rules/content.scanning.rules     
# vi filename.rules  
From:   127.0.0.1       /etc/MailScanner/filename.rules.allowall.conf 
FromOrTo:       default /etc/MailScanner/filename.rules.conf
  
# vi filetype.rules 
From:   127.0.0.1       /etc/MailScanner/filetype.rules.allowall.conf 
FromOrTo:       default /etc/MailScanner/filetype.rules.conf 
 
# vi filename.rules.allowall.conf 
allow   .*      -       -  

# vi filetype.rules.allowall.conf 
allow   .*      -       -  

# vi rules/content.scanning.rules 
From:   127.0.0.1       no 
FromOrTo:       default yes  

# chown -R postfix:apache /var/spool/MailScanner/quarantine/ 
# chmod g+rws /var/spool/MailScanner/quarantine/

III. Menyalakan MailScanner

# chkconfig --level 2345 MailScanner on
# service MailScanner start && tail -f /var/log/maillog

Jika tidak ada error, maka akan terlihat seperti berikut:



Harus diingat bahwa perintah untuk menyalakan dan mematikan postfix sudah berubah. Dahulu kita menggunakan postfix start untuk menyalakan dan postfix stop untuk mematikan. Sekarang kita akan menggunakan perintah service MailScanner start untuk menyalan postfix, service MailScanner stop untuk mematikan postfix, dan service MailScanner restart untuk merestart postfix.

Sekarang buka browser, lalu ketikkan:

 http://alamat_ip/mailscanner

Lalu masukkan username dan password. Dalam hal ini admin dan password, maka akan terlihat gambar seperti berikut:



Yang harus dilakukan pertama kali adalah kita harus mengupdate spamassassin rule dan database geoip dengan cara menekan item Tools/Links. Kemudian setelah itu pilih item Update Spamassassin Rule Descriptions untuk mengupdate spamassassin rule dan jika sudah selesai maka pilih item Update GeoIP Database untuk mengupdate database GeoIP.
Dengan demikian, kita sudah berhasil menginstal antivirus dan antispam pada postfix di ventos 5.4.

IV. Lain-Lain

Pada saat penulis melihat log untuk mail server yang ada di /var/log/maillog terlihat ada tulisan sebagai berikut:

mail MailScanner[2994]: Cannot find Socket (/tmp/clamd.socket) Exiting!

Ternyata setelah mencari jawabannya di berbagai forum diskusi, hal ini diakibatkan kesalahan pada saat mengkonfigurasi MailScanner.conf pada bagian Clamd Socket. Yang tertulis di sana adalah /tmp/clamd.socket. Seharusnya tertulis /var/run/clamav/clamd.sock sebagaimana yang ada di dalam file clamd.conf di folder /etc. Setelah itu restart MailScanner dan seharusnya tulisan
Cannot find Socket (/tmp/clamd.socket) Exiting! sudah tidak ada dalam log mail server.

Referensi:

http://adityo.blog.binusian.org/
http://www.howtoforge.com/
Berbagai Forum Diskusi


22 Dzulqa'dah 1430 H
10 November 2009 M


+ 2
+ 3
Comments
Add New Search
ichan   |114.57.135.xxx |2010-05-31 22:49:13
Mas,,mau nanya ni,,sewaktu langkah 3.Instalasi SpamAssassin,,,
Tidak bisa di install,,pesanx sperti ini:

cpan> install Net:NS
CPAN: Storable loaded ok
Going to read /root/.cpan/Metadata
Warning: Found only 0 objects in /root/.cpan/Metadata
CPAN: LWP::UserAgent loaded ok
Fetching with LWP:
ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
LWP failed with code[401] message[OOPS: vsftpd: refusing to run with writable anonymous root]
Fetching with Net::FTP:
ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
Couldn't login on ftp.perl.org at /usr/lib/perl5/5.8.8/CPAN.pm line 2255.

Trying with "/usr/bin/links -source" to get
ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz

System call "/usr/bin/links -source "ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz" > /root/.cpan/sources/authors/01mailrc.txt"
returned status 0 (wstat 0)
Warning: expected file [/root/.cpan/sources/authors/01mailrc.txt.gz] doesn't exist

Trying with "/usr/bin/wget -O -" to get
ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
--2010-05-31 22:49:28-- ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz
=> `-'
Resolving ftp.perl.org... 202.134.6.171
Connecting to ftp.perl.org|202.134.6.171|:21... connected.
Logging in as anonymous ...
Login incorrect.

System call "/usr/bin/wget -O - "ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz" > /root/.cpan/sources/authors/01mailrc.txt"
returned status 1 (wstat 256)
Warning: expected file [/root/.cpan/sources/authors/01mailrc.txt.gz] doesn't exist
Issuing "/usr/kerberos/bin/ftp -n"
Please login with USER and PASS.
Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
usage: user username [password] [account]
Local directory now /root/.cpan/sources/authors
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Passive mode refused. Turning off passive mode.
Please login with USER and PASS.
ftp: bind: Address already in use
Bad luck... Still failed!
Can't access URL ftp://ftp.perl.org/pub/CPAN/authors/01mailrc.txt.gz.

Please check, if the URLs I found in your configuration file () are valid.
The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'

Could not fetch authors/01mailrc.txt.gz
Fetching with LWP:
ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz
LWP failed with code[401] message[OOPS: vsftpd: refusing to run with writable anonymous root]
Fetching with Net::FTP:
ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz
Couldn't login on ftp.perl.org at /usr/lib/perl5/5.8.8/CPAN.pm line 2255.

Trying with "/usr/bin/links -source" to get
ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz

System call "/usr/bin/links -source "ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz" > /root/.cpan/sources/modules/02packages.details.txt"
returned status 0 (wstat 0)
Warning: expected file [/root/.cpan/sources/modules/02packages.details.txt.gz] doesn't exist

Trying with "/usr/bin/wget -O -" to get
ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz
--2010-05-31 22:508-- ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz
=> `-'
Resolving ftp.perl.org... 202.134.6.171
Connecting to ftp.perl.org|202.134.6.171|:21... connected.
Logging in as anonymous ...
Login incorrect.

System call "/usr/bin/wget -O - "ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz" > /root/.cpan/sources/modules/02packages.details.txt"
returned status 1 (wstat 256)
Warning: expected file [/root/.cpan/sources/modules/02packages.details.txt.gz] doesn't exist
Issuing "/usr/kerberos/bin/ftp -n"
Please login with USER and PASS.
Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
usage: user username [password] [account]
Local directory now /root/.cpan/sources/modules
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Passive mode refused. Turning off passive mode.
Please login with USER and PASS.
ftp: bind: Address already in use
Bad luck... Still failed!
Can't access URL ftp://ftp.perl.org/pub/CPAN/modules/02packages.details.txt.gz.

Please check, if the URLs I found in your configuration file () are valid.
The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'

Could not fetch modules/02packages.details.txt.gz
Fetching with LWP:
ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz
LWP failed with code[401] message[OOPS: vsftpd: refusing to run with writable anonymous root]
Fetching with Net::FTP:
ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz
Couldn't login on ftp.perl.org at /usr/lib/perl5/5.8.8/CPAN.pm line 2255.

Trying with "/usr/bin/links -source" to get
ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz

System call "/usr/bin/links -source "ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz" > /root/.cpan/sources/modules/03modlist.data"
returned status 0 (wstat 0)
Warning: expected file [/root/.cpan/sources/modules/03modlist.data.gz] doesn't exist

Trying with "/usr/bin/wget -O -" to get
ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz
--2010-05-31 22:50:38-- ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz
=> `-'
Resolving ftp.perl.org... 202.134.6.171
Connecting to ftp.perl.org|202.134.6.171|:21... connected.
Logging in as anonymous ...
Login incorrect.

System call "/usr/bin/wget -O - "ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz" > /root/.cpan/sources/modules/03modlist.data"
returned status 1 (wstat 256)
Warning: expected file [/root/.cpan/sources/modules/03modlist.data.gz] doesn't exist
Issuing "/usr/kerberos/bin/ftp -n"
Please login with USER and PASS.
Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
usage: user username [password] [account]
Local directory now /root/.cpan/sources/modules
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Please login with USER and PASS.
Passive mode refused. Turning off passive mode.
Please login with USER and PASS.
ftp: bind: Address already in use
Bad luck... Still failed!
Can't access URL ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz.

Please check, if the URLs I found in your configuration file () are valid.
The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'

Could not fetch modules/03modlist.data.gz
Going to write /root/.cpan/Metadata
Warning: Cannot install Net:NS, don't know what it is.
Try the command

i /Net:NS/

to find objects with matching identifiers.


cpan> install Mail::SpamAssassin
Warning: Cannot install Mail::SpamAssassin, don't know what it is.
Try the command

i /Mail::SpamAssassin/

to find objects with matching identifiers.
catatan   |SAdministrator |2010-06-01 08:03:01
Halo Mas Ichan,
Hal ini mungkin disebabkan karena site yang dituju tidak ada paket-paket seperti itu. Cari lagi site yang lain.

Semoga Membantu
ichan   |114.56.226.xxx |2010-06-02 18:00:18
mas,,,sepetinya dampak instalasi spamassassin melalui YUM sudah mulai terlihat mas,,,saat langkah 8.Konfigurasi Spamassassin terdapat error pada baris ini mas:

[root@mail ~]# chown postfix:apache /var/spool/MailScanner/spamassassin/ /var/spool/MailScanner/spamassassin/bayes/
chown: cannot access `/var/spool/MailScanner/spamassassin/bayes/': No such file or directory

Dari kesalahanx apakah saya harus membuat folder bayes sendiri?
catatan   |SAdministrator |2010-06-04 10:30:41
Iya, buat saja folder bayes
Anonymous   |114.56.241.xxx |2010-06-04 03:37:45
mas,,cara masuk phpmyadmin gmn y mas?,,.
saya coba dengan localhost/phpmyadmin tidak bisa
kemudian saya install menggunakan yum install phpmyadmin kemudian saya coba kembali jg tdk bisa,,
mohon solusinya mas,,
catatan   |SAdministrator |2010-06-04 10:34:11
Halo,
Untuk install phpmyadmin ikuti saja tutorial dibawah ini:

http://www.aoddy.com/2007/12/12/how-to-install-phpmyadmin-2113-on-centos-5/

Semoga Membantu
Anonymous   |114.56.241.xxx |2010-06-04 03:58:17
setelah saya cari di artikel" saya telah berhasil menginstall phpmyadmin nya mas,,tapi setelah masuk ke halaman phpmyadmin terdapat error sprti ini:
Error
The configuration file now needs a secret passphrase (blowfish_secret).

apakah ada konfigurasi yg perlu saya tambahkan mas..
catatan   |SAdministrator |2010-06-04 10:34:35
Halo,
Ikuti saja tutorial yang sudah saya berikan di atas
Anonymous   |114.56.241.xxx |2010-06-04 04:08:49
di file config.inc.php di bagian blowfish_secret jg sdh saya masukkan huruf sembarang sprti '1234',,tetapi pesan error masih muncul mas,,
catatan   |SAdministrator |2010-06-04 10:34:50
Halo,
Ikuti saja tutorial yang sudah saya berikan di atas
Anonymous   |114.58.56.xxx |2010-06-04 11:14:33
kmrn saya sdh mencoba artikel tsb dan artikel lain seperti http://heker86.wordpress.com/2008/10/11/install-lampp-phpmyadmin-di-centos-5/

tetapi hsil tetap sama,,
catatan   |SAdministrator |2010-06-04 16:19:02
web servernya sudah dinyalakan?
ichan   |114.56.73.xxx |2010-06-22 01:33:49
Mas Arif,,Alhamdulillah MailScannernya sdh berjalan dengan baik mas;
[root@mail ~]# service MailScanner restart
Shutting down MailScanner daemons:
MailScanner: [ OK ]
incoming postfix: [ OK ]
outgoing postfix: [ OK ]
Waiting for MailScanner to die gracefully ....5. dead.
Starting MailScanner daemons:
incoming postfix: [ OK ]
outgoing postfix: [ OK ]
MailScanner:

[ OK ]
[root@mail ~]# service MailScanner status
Checking MailScanner daemons:
MailScanner: [ OK ]


Tetapi sewaktu saya menjalankan localhost/mailscanner di browser tetap tidak muncul halaman apapun mas,,bukan halaman error jg,,tetapi hanya halaman kosong,,
catatan   |SAdministrator |2010-06-22 10:25:41
Alhamdulillah.

Oh ya, Gak bisa ngeliat MailScanner di Browser?
Apa sudah dinyalakan web servernya?
Dan apakah sedah benar username dan passwordnya?
ichan   |114.58.122.xxx |2010-07-08 02:28:11
mas,,mw nanya ngetes spam offline donk mas,,
saya nemu link ini tp smpai skr g mudeng" gimana caranya.Mohon bantuannya mas,sapa tau mas lebih ngerti,, :
ini mas linknya:

http://spamassassin.apache.org/gtube/

http://www.eicar.org/anti_virus_test_file.htm
ichan   |114.58.122.xxx |2010-07-08 02:32:40
disini jg ada software mail scannernya sama pembuat spam (mungkin,,.hehe,.)..mohon pendapat mas arif bagaimana,,

http://www.mailingcheck.com/free-bulk-emailer-for-email-marketing/

thx mas
ichan  - re:   |114.59.8.xxx |2010-07-08 03:47:42
ichan wrote:
disini jg ada software mail scannernya sama pembuat spam (mungkin,,.hehe,.)..mohon pendapat mas arif bagaimana,,

http://www.mailingcheck.com/free-bulk-emailer-for-email-marketing/

thx mas


saya barusan sudah nyoba pake sendblaster yang saya download dari link ini,,,trus saya sdh berhasil mengirimkan email ke 5 alamat email sekaligus yang sudah saya buat sebelumnya,,.tetapi saat saya lihat di kelima alamat tersebut,,memang emailnya terkirim tapi tidak termasuk dalam kategori email tu mas,,

ini salah satu isi header:

Return-Path:
X-Original-To: dua@auliachandra.co.cc
Delivered-To: dua@auliachandra.co.cc
Received: from 114.59.195.18 (unknown [192.168.0.5])
by mail.auliachandra.co.cc (Postfix) with ESMTPA id 5C7A73603A5
for ; Thu, 8 Jul 2010 03:44:20 +0700 (WIT)
MIME-Version: 1.0
From: "ichaaaaannn"
Reply-To: mitha@auliachandra.co.cc
To: dua@auliachandra.co.cc
Subject: spanyol menang
Content-Type: text/plain; charset="windows-1252"
Content-Transfer-Encoding: quoted-printable
X-Mailer: SmartSend.2.0.109
Date: Thu, 8 Jul 2010 03:41:26 +0700
Message-ID:
X-yoursite-MailScanner-Information: Please contact the ISP for more information
X-yoursite-MailScanner-ID: 5C7A73603A5.AF149
X-yoursite-MailScanner: Found to be clean
X-yoursite-MailScanner-From: ichan@auliachandra.co.cc
X-Spam-Status: No
ichan   |114.59.8.xxx |2010-07-08 03:53:00
wahh,,ternyata berhasil mas,,,hhehehe,,,setelah saya oprek" ternyata berhasil memakai software sendblaster tersebut,,,[sharing mode ON]

Jadi email spam tersebut tidak masuk ke webmail,,tapi hasilnya bisa di tampilkan di mailscanner,,
catatan   |SAdministrator |2010-07-08 13:47:54
Wah ternyata pertanyaan kamu itu semua di jawab sendiri oleh kamu ya

Saya sendiri belum mencoba tuh mas

Nanti kita sharing ilmu mas ya.
Write comment
Name:
Email:
 
Website:
Title:
UBBCode:
[b] [i] [u] [url] [quote] [code] [img] 
 
 
:angry::0:confused::cheer:B):evil::silly::dry::lol::kiss::D:pinch:
:(:shock::X:side::):P:unsure::woohoo::huh::whistle:;):s
:!::?::idea::arrow:
 
Please input the anti-spam code that you can read in the image.

3.26 Copyright (C) 2008 Compojoom.com / Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved."

Terakhir Diperbaharui ( Kamis, 03 Juni 2010 04:36 )  

Tanggal dan Jam


Ulti Clocks content

Browse this website in:


Mutiara Hari Ini

Apabila pondasi (akar)nya tidak kuat; Maka cabangnya pun akan demikian sepanjang masa (Syair Arab)

Poling

Apakah artikel-artikel di situs ini bermanfaat untuk anda?

(283 votes)

7.8%
92.2%

Waktu Shalat