GoogleSearch
이 블로그 검색
Fedora14: sendmail / SMTP / Gmail relay
라벨:
Informatics
이메일로 전송BlogThis!Twitter에서 공유Facebook에서 공유
- Sendmail, SMTP, Gmail relay on Fedora 14
su - # login as root
yum -y install sendmail-cf # install sendmail
cp /etc/mail/sendmail.mc /etc/mail/sendmail.mc.orig # make a backup
emacs /etc/mail/sendmail.mc # edit configuration
- Correct
define(`SMART_HOST',`smtp.gmail.com')dnl
define(`RELAY_MAILER_ARGS', `TCP $h 587')dnl
define(`ESMTP_MAILER_ARGS', `TCP $h 587')dnl
define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
FEATURE(`authinfo',`hash /etc/mail/auth/client-info')dnl
TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')
- Save
mkdir /etc/mail/auth # a place to store credentials
emacs /etc/mail/auth/client-info # edit credentials file
AuthInfo:smtp.gmail.com "U:root" "I:@gmail.com" "P:"
- Check Openssl
makemap hash client-info < client-info
chmod 700 /etc/mail/auth
chmod 600 /etc/mail/auth/*
cd /etc/mail
make # compile configuration
service sendmail restart # read new configuration
- Send a test email.
echo 'this is a test'| mail -s test_email user@example.com
If it fails, read /var/log/maillog and /var/log/messages.
이메일로 전송BlogThis!Twitter에서 공유Facebook에서 공유
라벨:
Informatics
- Check Openssl
makemap hash client-info < client-info
chmod 700 /etc/mail/auth
chmod 600 /etc/mail/auth/*
cd /etc/mail
make # compile configuration
service sendmail restart # read new configuration
- Send a test email.
echo 'this is a test'| mail -s test_email user@example.com
If it fails, read /var/log/maillog and /var/log/messages.
Scientist. Husband. Daddy. --- TOLLE. LEGE
외부자료의 인용에 있어 대한민국 저작권법(28조)과 U.S. Copyright Act (17 USC. §107)에 정의된 "저작권물의 공정한 이용원칙 | the U.S. fair use doctrine" 을 따릅니다. 저작권(© 최광민)이 명시된 모든 글과 번역문들에 대해 (1) 복제-배포, (2) 임의수정 및 자의적 본문 발췌, (3) 무단배포를 위한 화면캡처를 금하며, (4) 인용 시 URL 주소 만을 사용할 수 있습니다. [후원 | 운영] [대문으로] [방명록] [옛 방명록] [티스토리 (백업)] [신시내티]
-