CentOS+postfix+ExtMail+amavisd-new+Spam_Locker+DSpam 구성 가이드: 3. MTA-Postfix 구성
postfix 설치
- shell
- # yum install postfix
- # rpm -e sendmail
2、postfix 설정
- shell
- # postconf -n > /etc/postfix/main2.cf
- # mv /etc/postfix/main.cf /etc/postfix/main.cf.old
- # mv /etc/postfix/main2.cf /etc/postfix/main.cf
편집cf:
- shell
- # vi /etc/postfix/main.cf
다음을 추가합니다.
- # hostname
- mynetworks = 127.0.0.1
- myhostname = mail.extmail.org
- mydestination = $mynetworks $myhostname
-
- # banner
- mail_name = Postfix - by extmail.org
- smtpd_banner = $myhostname ESMTP $mail_name
-
- # response immediately
- smtpd_error_sleep_time = 0s
-
- # Message and return code control
- message_size_limit = 5242880
- mailbox_size_limit = 5242880
- show_user_unknown_table_name = no
-
- # Queue lifetime control
- bounce_queue_lifetime = 1d
- maximal_queue_lifetime = 1d
postfix 켜기 자동 켜기를 설정하려면:
- shell
- # chkconfig postfix on
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
CentOS 7에서 OpenLDAP 서버 설치 및 구성LDAP(Lightweight Directory Access Protocol)는 ID와 개체를 쉽게 관리할 수 있는 디렉터리 서비스입니다. Windows 세계에서 서버는 일반적으로 Active Directory입니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.