Robert Lopez: > I am trying to understand the cause/causes of these log lines: > > 1) postfix/postscreen[####]: fatal: error [-30986] seeking > /var/lib/postfix/postscreen_cache.db: Success
Your Berkeley DB is screwed up. Code fragment from src/util/dict_db.c: /* * Database lookup. */ status = dict_db->cursor->c_get(dict_db->cursor, &db_key, &db_value, db_function); if (status != 0 && status != DB_NOTFOUND) msg_fatal("error [%d] seeking %s: %m", status, dict_db->dict.name); Did you build Postfix yourself or is this a package? Wietse