一直出现Recipient address rejected: Policy Rejection- Please try later
以前都没这问题 , 现在寄10次都是一样
=====================================
难道policyd做了限制??按理说发送3次差不多就可以了。
postmaster was rejected because it would exceed the quota for the mailbox
这个是信箱满了。
灰名单可以手动加白名单。
有三种风格:
IP Whitelisting format:
INSERT INTO whitelist (_whitelist,_description) \
VALUES ('127.%.%.%','# localhost');
INSERT INTO whitelist (_whitelist,_description) \
VALUES ('192.168.2.10','# lan server');
Sender Whitelisting format:
INSERT INTO whitelist_sender (_whitelist,_description) \
VALUES ('camis@mweb.co.za','# whitelist single address');
INSERT INTO whitelist_sender (_whitelist,_description) \
VALUES ('@mweb.co.za','# whitelist entire domain');
Please note that address whitelist will be matched only against
the sender address. For recipient whitelisting, please refer
to the opt-in/opt-out section below.
DNS name whitelisting
INSERT INTO whitelist_dnsname (_whitelist,_description) \
VALUES ('%.mweb.co.za','# whitelist *.mweb.co.za');
INSERT INTO whitelist_dnsname (_whitelist,_description) \
VALUES ('%.mail.mud.yahoo.com','# whitelist all yahoo mud mailservers');
INSERT INTO whitelist_dnsname (_whitelist,_description) \
VALUES ('n10.bulk.dcn.yahoo.com','# whitelist only this mailserver');