>Can anyone help me fix this error: >postfix/verify >[1033]:fatal:/var/log/address_verify.map.db:flush >dictionnary:no space left on device.
what does "df" show, you partition is full? Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 94804 42160 45060 48% / /dev/ad0s3e 10073786 6183424 3084460 67% /usr /dev/ad0s4e 8982102 184814 8078720 2% /var procfs 4 4 0 100% /proc To keep the address_verify.map.db file from growing too large, reduce the caching values from these defaults : postconf | grep verify address_verify_negative_expire_time = 3d address_verify_negative_refresh_time = 2h address_verify_positive_expire_time = 31d address_verify_positive_refresh_time = 7d For high volume sites, do not use RAV, use a table of known users for check_recipient_maps. RAV is vulnerable to dictionary attack which will cause the address_verify.map.db to explode from negatively caching the garbage dictionary addresses, many of which won't be seen again. Len
