메일 서버 · 16 min read · Jan 29, 2026
Postfix, Courier, MySQL 및 SquirrelMail을 이용한 가상 사용자 및 도메인 (Ubuntu 13.10) - 페이지 2
11 쿼터 초과 알림
모든 이메일 계정이 쿼터를 초과했을 때 알림을 받으려면 /usr/local/sbin/quota_notify 파일을 생성하십시오:
cd /usr/local/sbin/
vi quota_notify| #!/usr/bin/perl -w # Author <[email protected]> # # This script assumes that virtual_mailbox_base in defined # in postfix's main.cf file. This directory is assumed to contain # directories which themselves contain your virtual user's maildirs. # For example: # # -----------/ # | # | # home/vmail/domains/ # | | # | | # example.com/ foo.com/ # | # | # ----------------- # | | | # | | | # user1/ user2/ user3/ # | # | # maildirsize # use strict; my $POSTFIX_CF = "/etc/postfix/main.cf"; my $MAILPROG = "/usr/sbin/sendmail -t"; my $WARNPERCENT = 80; my @POSTMASTERS = ('[email protected]'); my $CONAME = 'My Company'; my $COADDR = '[email protected]'; my $SUADDR = '[email protected]'; my $MAIL_REPORT = 1; my $MAIL_WARNING = 1; #get virtual mailbox base from postfix config open(PCF, "< $POSTFIX_CF") or die $!; my $mboxBase; while ( |
변수들을 조정하는 것을 잊지 마십시오 (특히 [email protected] 이메일 주소).
파일을 실행 가능하게 만들어야 합니다:
chmod 755 quota_notify실행하십시오
crontab -e해당 스크립트에 대한 크론 작업을 생성합니다:
| 0 0 * * * /usr/local/sbin/quota_notify &> /dev/null |
12 Postfix 테스트
Postfix가 SMTP-AUTH 및 TLS를 준비했는지 확인하려면 다음을 실행하십시오:
telnet localhost 25Postfix 메일 서버에 연결한 후 다음을 입력하십시오:
ehlo localhost다음 줄이 표시되면
250-STARTTLS및
250-AUTH PLAIN LOGIN모든 것이 정상입니다:
root@server1:/usr/local/sbin# telnet localhost 25
Trying 127.0.0.1…
Connected to localhost.localdomain.
Escape character is ‘^]’.
220 server1.example.com ESMTP Postfix (Ubuntu)
<– ehlo localhost
250-server1.example.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
<– quit
221 2.0.0 Bye
Connection closed by foreign host.
root@server1:/usr/local/sbin#
시스템 셸로 돌아가려면
quit13 데이터베이스 채우기 및 테스트
데이터베이스를 채우려면 MySQL 셸을 사용할 수 있습니다:
mysql -u root -pUSE mail;최소한 domains 및 users 테이블에 항목을 생성해야 합니다:
INSERT INTO `domains` (`domain`) VALUES ('example.com');
INSERT INTO `users` (`email`, `password`, `quota`) VALUES ('[email protected]', ENCRYPT('secret'), 10485760);(비밀번호를 암호화하기 위해 두 번째 INSERT 문에서 ENCRYPT 구문을 사용해야 합니다!)
다른 두 테이블에 항목을 추가하려면 다음과 같이 작성할 수 있습니다:
INSERT INTO `forwardings` (`source`, `destination`) VALUES ('[email protected]', '[email protected]');
INSERT INTO `transport` (`domain`, `transport`) VALUES ('example.com', 'smtp:mail.example.com');MySQL 셸을 종료하려면 다음을 입력하십시오:
quit;대부분의 사람들에게는 MySQL의 그래픽 프론트 엔드가 더 쉽기 때문에 phpMyAdmin을 사용하여 mail 데이터베이스를 관리할 수 있습니다 (이 예에서는 http://192.168.0.100/phpmyadmin/ 또는 http://server1.example.com/phpmyadmin/). 사용자 생성 시 비밀번호를 암호화하기 위해 ENCRYPT 함수를 사용해야 합니다:

도메인 및 사용자 테이블에 대해 더 이상 설명할 필요는 없다고 생각합니다.
forwardings 테이블은 다음과 같은 항목을 가질 수 있습니다:
| source | destination | |
| [email protected] | [email protected] | [email protected]의 이메일을 [email protected]로 리디렉션 |
| @example.com | [email protected] | [email protected]에 대한 Catch-All 계정을 생성합니다. example.com으로의 모든 이메일은 [email protected]로 도착하며, 사용자 테이블에 존재하는 이메일을 제외합니다 (즉, [email protected]가 사용자 테이블에 존재하면 [email protected]로의 이메일은 여전히 [email protected]로 도착합니다). |
| @example.com | @anotherdomain.tld | example.com으로의 모든 이메일을 anotherdomain.tld의 동일한 사용자에게 리디렉션합니다. 예를 들어, [email protected]로의 이메일은 [email protected]로 전달됩니다. |
| [email protected] | [email protected], [email protected] | [email protected]의 이메일을 두 개 이상의 이메일 주소로 전달합니다. 목적지에 나열된 모든 이메일 주소는 이메일의 사본을 받습니다. |
transport 테이블은 다음과 같은 항목을 가질 수 있습니다:
| domain | transport | |
| example.com | : | example.com에 대한 이메일을 로컬로 배달합니다. 이 레코드가 이 테이블에 전혀 존재하지 않는 것과 같습니다. |
| example.com | smtp:mail.anotherdomain.tld | example.com에 대한 모든 이메일을 smtp를 통해 mail.anotherdomain.com 서버로 배달합니다. |
| example.com | smtp:mail.anotherdomain.tld:2025 | example.com에 대한 모든 이메일을 smtp를 통해 mail.anotherdomain.com 서버로 배달하지만, 기본 포트인 25가 아닌 포트 2025에서 배달합니다. |
| example.com | smtp:[1.2.3.4]
smtp:[1.2.3.4]:2025
smtp:[mail.anotherdomain.tld] | 대괄호는 Postfix가 대괄호 안의 주소에 대한 MX DNS 레코드를 조회하지 않도록 방지합니다. IP 주소에 대해 의미가 있습니다. | | .example.com | smtp:mail.anotherdomain.tld | example.com의 모든 하위 도메인에 대한 메일은 mail.anotherdomain.tld로 배달됩니다. | | * | smtp:mail.anotherdomain.tld | 모든 이메일이 mail.anotherdomain.tld로 배달됩니다. | | [email protected] | smtp:mail.anotherdomain.tld | [email protected]의 이메일은 mail.anotherdomain.tld로 배달됩니다. |
자세한 내용은
man transport를 참조하십시오.
transport 테이블의 항목 순서가 중요하다는 점을 기억하십시오! 항목은 위에서 아래로 순서대로 처리됩니다.
중요: Postfix는 transports에 대한 캐싱 메커니즘을 사용하므로 transport 테이블의 변경 사항이 적용되기까지 시간이 걸릴 수 있습니다. 변경 사항이 즉시 적용되도록 하려면 transport 테이블에서 변경한 후 다음을 실행하십시오:
postfix reload14 Maildir 생성을 위한 환영 이메일 보내기
새 이메일 계정을 생성하고 (POP3/IMAP으로) 이메일을 가져오려고 하면 Maildir이 존재하지 않는다는 오류 메시지가 표시될 수 있습니다. Maildir은 새 계정에 대한 첫 번째 이메일이 도착할 때 자동으로 생성됩니다. 따라서 새 계정에 환영 이메일을 보내는 것이 좋습니다.
먼저 mailx 패키지를 설치합니다:
apt-get install mailutils다음과 같이 [email protected]에게 환영 이메일을 보냅니다:
mailx [email protected]제목을 입력하라는 메시지가 표시됩니다. 제목을 입력한 후 ENTER를 누르고, 다음 줄에 메시지를 입력합니다. 메시지가 끝나면 ENTER를 다시 눌러 새 줄로 이동한 후 CTRL+D를 누릅니다. 메일을 CC하지 않으려면 ENTER를 다시 누릅니다:
root@server1:/usr/local/sbin# mailx [email protected]
Cc: <– ENTER
Subject: Welcome <– ENTER
Welcome! Have fun with your new mail account. <– ENTER
<– CTRL+D
root@server1:/usr/local/sbin#
참고: 동일한 주소에 대해 transport 및 메일박스를 추가하지 마십시오.15 SquirrelMail 설치
SquirrelMail은 사용자가 브라우저에서 이메일을 보내고 받을 수 있도록 해주는 웹메일 인터페이스입니다. 이 장에서는 SquirrelMail을 설치하고 설정을 조정하여 사용자가 SquirrelMail 인터페이스에서 이메일 계정 비밀번호를 변경할 수 있도록 하는 방법을 보여줍니다.
SquirrelMail을 설치하려면 다음을 실행합니다:
apt-get install squirrelmail squirrelmail-compatibility php-pear php-db다음으로 SquirrelMail 패키지와 함께 제공되는 Apache 구성을 /etc/apache2/conf-available 디렉토리에 심볼릭 링크하고 Apache를 재시작합니다:
ln -s /etc/squirrelmail/apache.conf /etc/apache2/conf-available/squirrelmail.conf
/etc/init.d/apache2 restartSquirrelMail에는 몇 가지 사전 설치된 플러그인이 포함되어 있지만, 불행히도 그 중 어느 것도 MySQL 데이터베이스에서 이메일 비밀번호를 변경할 수 있는 기능이 없습니다. 그러나 수동으로 설치할 수 있는 Change SQL Password 플러그인이 있습니다:
cd /usr/share/squirrelmail/plugins
wget http://www.squirrelmail.org/plugins/change_sqlpass-3.3-1.2.tar.gz
tar xvfz change_sqlpass-3.3-1.2.tar.gz
cd change_sqlpass
cp config.php.sample config.php이제 config.php를 편집하고 설정에 맞게 조정해야 합니다. 다음과 같이 $csp_dsn, $lookup_password_query, $password_update_queries, $password_encryption, $csp_salt_static 및 $csp_delimiter 변수를 조정하고 $csp_salt_query는 주석 처리하십시오:
vi config.php| [...] $csp_dsn = 'mysql://mail_admin:mail_admin_password@localhost/mail'; [...] $lookup_password_query = 'SELECT count(*) FROM users WHERE email = "%1" AND password = %4'; [...] $password_update_queries = array('UPDATE users SET password = %4 WHERE email = "%1"'); [...] $password_encryption = 'MYSQLENCRYPT'; [...] $csp_salt_static = 'LEFT(password, 2)'; [...] //$csp_salt_query = 'SELECT salt FROM users WHERE username = "%1"'; [...] $csp_delimiter = '@'; [...] |
전체 파일은 다음과 같습니다:
| * 2002-2005 Paul Lesneiwski <[email protected]> * This program is licensed under GPL. See COPYING for details * * @package plugins * @subpackage Change SQL Password * */ // Global Variables, don't touch these unless you want to break the plugin // global $csp_dsn, $password_update_queries, $lookup_password_query, $force_change_password_check_query, $password_encryption, $csp_salt_query, $csp_salt_static, $csp_secure_port, $csp_non_standard_http_port, $csp_delimiter, $csp_debug, $min_password_length, $max_password_length, $include_digit_in_password, $include_uppercase_letter_in_password, $include_lowercase_letter_in_password, $include_nonalphanumeric_in_password; // csp_dsn // // Theoretically, any SQL database supported by Pear should be supported // here. The DSN (data source name) must contain the information needed // to connect to your database backend. A MySQL example is included below. // For more details about DSN syntax and list of supported database types, // please see: // http://pear.php.net/manual/en/package.database.db.intro-dsn.php // //$csp_dsn = 'mysql://user:password@localhost/email_users'; $csp_dsn = 'mysql://mail_admin:mail_admin_password@localhost/mail'; // lookup_password_query // // This plugin will always verify the user's old password // against their login password, but an extra check can also // be done against the database for more security if you // desire. If you do not need the extra password check, // make sure this setting is empty. // // This is a query that returns a positive value if a user // and password pair are found in the database. // // This query should return one value (one row, one column), the // value being ideally a one or a zero, simply indicating that // the user/password pair does in fact exist in the database. // // %1 in this query will be replaced with the full username // (including domain), such as "[email protected]" // %2 in this query will be replaced with the username (without // any domain portion), such as "jose" // %3 in this query will be replaced with the domain name, // such as "example.com" // %4 in this query will be replaced with the current (old) // password in whatever encryption format is needed per other // plugin configuration settings (Note that the syntax of // the password will be provided depending on your encryption // choices, so you NEVER need to provide quotes around this // value in the query here.) // %5 in this query will be replaced with the current (old) // password in unencrypted plain text. If you do not use any // password encryption, %4 and %5 will be the same values, // except %4 will have double quotes around it and %5 will not. // //$lookup_password_query = ''; // TERRIBLE SECURITY: $lookup_password_query = 'SELECT count(*) FROM users WHERE username = "%1" AND plain_password = "%5"'; //$lookup_password_query = 'SELECT count(*) FROM users WHERE username = "%1" AND crypt_password = %4'; $lookup_password_query = 'SELECT count(*) FROM users WHERE email = "%1" AND password = %4'; // password_update_queries // // An array of SQL queries that will all be executed // whenever a password change attempt is made. // // Any number of queries may be included here. // The queries will be executed in the order given here. // // %1 in all queries will be replaced with the full username // (including domain), such as "[email protected]" // %2 in all queries will be replaced with the username (without // any domain portion), such as "jose" // %3 in all queries will be replaced with the domain name, // such as "example.com" // %4 in all queries will be replaced with the new password // in whatever encryption format is needed per other // plugin configuration settings (Note that the syntax of // the password will be provided depending on your // encryption choices, so you NEVER need to provide quotes // around this value in the queries here.) // %5 in all queries will be replaced with the new password // in unencrypted plain text - BEWARE! If you do not use // any password encryption, %4 and %5 will be the same // values, except %4 will have double quotes around it // and %5 will not. // // $password_update_queries = array( // 'UPDATE users SET crypt_password = %4 WHERE username = "%1"', // 'UPDATE user_flags SET force_change_pwd = 0 WHERE username = "%1"', // 'UPDATE users SET crypt_password = %4, force_change_pwd = 0 WHERE username = "%1"', // ); $password_update_queries = array('UPDATE users SET password = %4 WHERE email = "%1"'); // force_change_password_check_query // // A query that checks for a flag that indicates if a user // should be forced to change their password. This query // should return one value (one row, one column) which is // zero if the user does NOT need to change their password, // or one if the user should be forced to change it now. // // This setting should be an empty string if you do not wish // to enable this functionality. // // %1 in this query will be replaced with the full username // (including domain), such as "[email protected]" // %2 in this query will be replaced with the username (without // any domain portion), such as "jose" // %3 in this query will be replaced with the domain name, // such as "example.com" // //$force_change_password_check_query = 'SELECT IF(force_change_pwd = "yes", 1, 0) FROM users WHERE username = "%1"'; //$force_change_password_check_query = 'SELECT force_change_pwd FROM users WHERE username = "%1"'; $force_change_password_check_query = ''; // password_encryption // // What encryption method do you use to store passwords // in your database? Please use one of the following, // exactly as you see it: // // NONE Passwords are stored as plain text only // MYSQLPWD Passwords are stored using the MySQL password() function // MYSQLENCRYPT Passwords are stored using the MySQL encrypt() function // PHPCRYPT Passwords are stored using the PHP crypt() function // MD5CRYPT Passwords are stored using encrypted MD5 algorithm // MD5 Passwords are stored as MD5 hash // //$password_encryption = 'MYSQLPWD'; $password_encryption = 'MYSQLENCRYPT'; // csp_salt_query // csp_salt_static // // Encryption types that need a salt need to know where to get // that salt. If you have a constant, known salt value, you // should define it in $csp_salt_static. Otherwise, leave that // value empty and define a value for the $csp_salt_query. // // Leave both values empty if you do not need (or use) salts // to encrypt your passwords. // // The query should return one value (one row, one column) which // is the salt value for the current user's password. This // query is ignored if $csp_salt_static is anything but empty. // // %1 in this query will be replaced with the full username // (including domain), such as "[email protected]" // %2 in this query will be replaced with the username (without // any domain portion), such as "jose" // %3 in this query will be replaced with the domain name, // such as "example.com" // //$csp_salt_static = 'LEFT(crypt_password, 2)'; //$csp_salt_static = '"a4"'; // use this format with MYSQLENCRYPT //$csp_salt_static = '$2$blowsomefish$'; // use this format with PHPCRYPT //$csp_salt_static = ''; $csp_salt_static = 'LEFT(password, 2)'; //$csp_salt_query = 'SELECT SUBSTRING_INDEX(crypt_password, '$', 1) FROM users WHERE username = "%1"'; //$csp_salt_query = 'SELECT SUBSTRING(crypt_password, (LENGTH(SUBSTRING_INDEX(crypt_password, '$', 2)) + 2)) FROM users WHERE username = "%1"'; //$csp_salt_query = 'SELECT salt FROM users WHERE username = "%1"'; //$csp_salt_query = ''; // csp_secure_port // // You may ensure that SSL encryption is used during password // change by setting this to the port that your HTTPS is served // on (443 is typical). Set to zero if you do not wish to force // an HTTPS connection when users are changing their passwords. // // You may override this value for certain domains, users, or // service levels through the Virtual Host Login (vlogin) plugin // by setting a value(s) for $vlogin_csp_secure_port in the vlogin // configuration. // $csp_secure_port = 0; //$csp_secure_port = 443; // csp_non_standard_http_port // // If you serve standard HTTP web requests on a non-standard // port (anything other than port 80), you should specify that // port number here. Set to zero otherwise. // // You may override this value for certain domains, users, or // service levels through the Virtual Host Login (vlogin) plugin // by setting a value(s) for $vlogin_csp_non_standard_http_port // in the vlogin configuration. // //$csp_non_standard_http_port = 8080; $csp_non_standard_http_port = 0; // min_password_length // max_password_length // include_digit_in_password // include_uppercase_letter_in_password // include_lowercase_letter_in_password // include_nonalphanumeric_in_password // // You can set the minimum and maximum password lengths that // you accept or leave those settings as zero to indicate that // no limit should be applied. // // Turn on any of the other settings here to check that the // new password contains at least one digit, upper case letter, // lower case letter and/or one non-alphanumeric character. // $min_password_length = 6; $max_password_length = 0; $include_digit_in_password = 0; $include_uppercase_letter_in_password = 0; $include_lowercase_letter_in_password = 0; $include_nonalphanumeric_in_password = 0; // csp_delimiter // // if your system has usernames with something other than // an "@" sign separating the user and domain portion, // specify that character here // //$csp_delimiter = '|'; $csp_delimiter = '@'; // debug mode // $csp_debug = 0; ?> |
이제 SquirrelMail 구성으로 들어가서 SquirrelMail이 Courier를 POP3 및 IMAP 서버로 사용한다고 알려주고 Change SQL Password 및 Compatibility 플러그인을 활성화해야 합니다:
/usr/sbin/squirrelmail-configure다음 메뉴가 표시됩니다. 지시에 따라 탐색하십시오:
SquirrelMail Configuration : Read: config.php (1.4.0)
Main Menu –
1. Organization Preferences
2. Server Settings
3. Folder Defaults
4. General Options
5. Themes
6. Address Books
7. Message of the Day (MOTD)
8. Plugins
9. Database
10. Languages
D. Set pre-defined settings for specific IMAP servers
C Turn color on
S Save data
Q Quit
Command >> <– D
SquirrelMail Configuration : Read: config.php
While we have been building SquirrelMail, we have discovered some
preferences that work better with some servers that don’t work so
well with others. If you select your IMAP server, this option will
set some pre-defined settings for that server.
Please note that you will still need to go through and make sure
everything is correct. This does not change everything. There are
only a few settings that this will change.
Please select your IMAP server:
bincimap = Binc IMAP server
courier = Courier IMAP server
cyrus = Cyrus IMAP server
dovecot = Dovecot Secure IMAP server
exchange = Microsoft Exchange IMAP server
hmailserver = hMailServer
macosx = Mac OS X Mailserver
mercury32 = Mercury/32
uw = University of Washington’s IMAP server
gmail = IMAP access to Google mail (Gmail) accounts
quit = Do not change anything
Command >> <– courier
imap_server_type = courier
default_folder_prefix = INBOX.
trash_folder = Trash
sent_folder = Sent
draft_folder = Drafts
show_prefix_option = false
default_sub_of_inbox = false
show_contain_subfolders_option = false
optional_delimiter = .
delete_folder = true
Press enter to continue… <– press ENTER
SquirrelMail Configuration : Read: config.php (1.4.0)
Main Menu –
1. Organization Preferences
2. Server Settings
3. Folder Defaults
4. General Options
5. Themes
6. Address Books
7. Message of the Day (MOTD)
8. Plugins
9. Database
10. Languages
D. Set pre-defined settings for specific IMAP servers
C Turn color on
S Save data
Q Quit
Command >> <– 8
SquirrelMail Configuration : Read: config.php (1.4.0)
Plugins
Installed Plugins
1. view_as_html
Available Plugins:
2. administrator
3. bug_report
4. calendar
5. change_sqlpass
6. compatibility
7. delete_move_next
8. demo
9. filters
10. fortune
11. info
12. listcommands
13. mail_fetch
14. message_details
15. newmail
16. sent_subfolders
17. spamcop
18. squirrelspell
19. test
20. translate
R Return to Main Menu
C Turn color on
S Save data
Q Quit
Command >> <– 6 (또는 compatibility 플러그인의 번호 - change_sqlpass 플러그인에 필요함)
SquirrelMail Configuration : Read: config.php (1.4.0)
Plugins
Installed Plugins
1. view_as_html
2. compatibility
Available Plugins:
3. administrator
4. bug_report
5. calendar
6. change_sqlpass
7. delete_move_next
8. demo
9. filters
10. fortune
11. info
12. listcommands
13. mail_fetch
14. message_details
15. newmail
16. sent_subfolders
17. spamcop
18. squirrelspell
19. test
20. translate
R Return to Main Menu
C Turn color on
S Save data
Q Quit
Command >> <– 6 (change_sqlpass 플러그인의 번호)
SquirrelMail Configuration : Read: config.php (1.4.0)
Plugins
Installed Plugins
1. view_as_html
2. compatibility
3. change_sqlpass
Available Plugins:
4. administrator
5. bug_report
6. calendar
7. delete_move_next
8. demo
9. filters
10. fortune
11. info
12. listcommands
13. mail_fetch
14. message_details
15. newmail
16. sent_subfolders
17. spamcop
18. squirrelspell
19. test
20. translate
R Return to Main Menu
C Turn color on
S Save data
Q Quit
Command >> S
SquirrelMail Configuration : Read: config.php (1.4.0)
Plugins
Installed Plugins
1. view_as_html
2. compatibility
3. change_sqlpass
Available Plugins:
4. administrator
5. bug_report
6. calendar
7. delete_move_next
8. demo
9. filters
10. fortune
11. info
12. listcommands
13. mail_fetch
14. message_details
15. newmail
16. sent_subfolders
17. spamcop
18. squirrelspell
19. test
20. translate
R Return to Main Menu
C Turn color on
S Save data
Q Quit
Command >> Q
이제 squirrelmail을 다음과 같이 활성화해야 합니다:
a2enconf squirrelmail
service apache2 reload이제 브라우저에서 http://server1.example.com/squirrelmail 또는 http://192.168.0.100/squirrelmail을 입력하여 SquirrelMail에 접근할 수 있습니다.
이메일 주소 (예: [email protected])와 비밀번호로 로그인하십시오:

받은 편지함에서 환영 이메일을 찾을 수 있어야 합니다:


비밀번호를 변경하려면 옵션으로 가서 비밀번호 변경을 선택하십시오:
현재 비밀번호와 새 비밀번호를 두 번 입력하십시오:

비밀번호가 성공적으로 변경되면 다음 오류 메시지가 표시됩니다. 이는 이전 비밀번호가 더 이상 활성화되지 않기 때문에 새 비밀번호로 다시 로그인해야 함을 의미합니다:

17 참고 문헌
- 튜토리얼: Debian-Sarge 및 Postfix 2.1을 사용한 ISP 스타일 이메일 서비스: http://workaround.org/articles/ispmail-sarge/
- Postfix + 쿼터: http://vhcs.net/new/modules/newbb/viewtopic.php?topic_id=3496&forum=17
- saslauthd를 사용하여 암호화된 메일 비밀번호: http://www.syscp.de/docs/public/contrib/cryptedmailpws
18 링크
- Postfix MTA: http://www.postfix.org/
- Postfix Quota Patch: http://web.onda.com.br/nadal/
- phpMyAdmin: http://www.phpmyadmin.net/
- SquirrelMail: http://www.squirrelmail.org/
- Ubuntu: http://www.ubuntu.com/
- 가상 메일 관리 인터페이스 (VMA): http://code.google.com/p/vma/
새 게시물을 받은 편지함에서 받기
스팸은 없습니다. 언제든지 구독 해지 가능합니다.