Mail Server User Issues

I recently had a Mail server crash and the RAID it lie on did its rebuild. Afterwards all my accounts seem to be working fine except one.
I have an IMAP account setup, locally administered. The user can log in with their credentials from a client software, the user can send emails. But the user cannot receive new emails, and some of their mail folders, especially their inbox, is not populating. The sent folders are populating thou.
Its almost like have the services work and the other half doesn't. Iv looked at different permissions and folders and I cant seem to find what may be causing only one user isn't able to access mail.
Mail Server 10.6 with postfix and dovecot.
Any suggestions?

The roundcube db schema needs to setup manually. See /usr/share/webapps/roundcube/INSTALL
Also, from your /etc/webapps/postfixadmin/config.inc.php:
$CONF['domain_path'] = 'NO';
$CONF['domain_in_mailbox'] = 'YES';
$CONF['maildir_name_hook'] = 'NO';
..which results in /var/mail/vmail/[email protected]
From your dovecot.conf
mail_home = /var/mail/vmail/%d/%u
...which results in /var/mail/vmail/domain.com/user
That doesn't fit together.

Similar Messages

  • Mail server setup issues

    Hi.
    I am in trouble setting up a basic mail server. I just spent the last 10 or so hours, in one more try to set it, and yet no results.
    Please, give some help as i am becoming sort of desperated with it
    This time, i followed this guide since the beginning.
    What I've done:
    - Created a user vmail, with home directory set on /var/mail/vmail/
    - Had a LAMP server already working.
    - Created two databases: postfix_db and roundcube_db, owned by postfix_user and roundcube_user respectively.
    - Since it is for personal use and i don't use "old/odd clients like Outlook"  i skipped smtps. And made the following files:
    My postfix main.cf(every commented line removed):
    queue_directory = /var/spool/postfix
    command_directory = /usr/bin
    daemon_directory = /usr/lib/postfix
    data_directory = /var/lib/postfix
    mail_owner = postfix
    mydomain = mydomainname.tld
    unknown_local_recipient_reject_code = 550
    alias_maps = hash:/etc/postfix/aliases
    alias_database = $alias_maps
    debug_peer_level = 2
    debugger_command =
    PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
    ddd $daemon_directory/$process_name $process_id & sleep 5
    sendmail_path = /usr/bin/sendmail
    newaliases_path = /usr/bin/newaliases
    mailq_path = /usr/bin/mailq
    setgid_group = postdrop
    html_directory = no
    manpage_directory = /usr/share/man
    sample_directory = /etc/postfix/sample
    readme_directory = /usr/share/doc/postfix
    inet_protocols = ipv4
    relay_domains = *
    virtual_alias_maps = proxy:mysql:/etc/postfix/virtual_alias_maps.cf
    virtual_mailbox_domains = proxy:mysql:/etc/postfix/virtual_domains_maps.cf
    virtual_mailbox_maps = proxy:mysql:/etc/postfix/virtual_mailbox_maps.cf
    virtual_mailbox_base = /var/mail/vmail
    virtual_mailbox_limit = 512000000
    virtual_minimum_uid = 5000
    virtual_transport = virtual
    virtual_uid_maps = static:5000
    virtual_gid_maps = static:5000
    local_transport = virtual
    local_recipient_maps = $virtual_mailbox_maps
    transport_maps = hash:/etc/postfix/transport
    smtpd_sasl_auth_enable = yes
    smtpd_sasl_type = dovecot
    smtpd_sasl_path = /var/run/dovecot/auth-client
    smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
    smtpd_relay_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
    smtpd_sasl_security_options = noanonymous
    smtpd_sasl_tls_security_options = $smtpd_sasl_security_options
    smtpd_tls_auth_only = yes
    smtpd_tls_cert_file = /etc/ssl/private/server.crt
    smtpd_tls_key_file = /etc/ssl/private/server.key
    smtpd_sasl_local_domain = $mydomain
    broken_sasl_auth_clients = yes
    smtpd_tls_loglevel = 1
    Postfix master.cf
    smtp inet n - n - - smtpd
    submission inet n - n - - smtpd
    -o smtpd_tls_security_level=encrypt
    -o smtpd_sasl_auth_enable=yes
    pickup unix n - n 60 1 pickup
    cleanup unix n - n - 0 cleanup
    qmgr unix n - n 300 1 qmgr
    tlsmgr unix - - n 1000? 1 tlsmgr
    rewrite unix - - n - - trivial-rewrite
    bounce unix - - n - 0 bounce
    defer unix - - n - 0 bounce
    trace unix - - n - 0 bounce
    verify unix - - n - 1 verify
    flush unix n - n 1000? 0 flush
    proxymap unix - - n - - proxymap
    proxywrite unix - - n - 1 proxymap
    smtp unix - - n - - smtp
    relay unix - - n - - smtp
    showq unix n - n - - showq
    error unix - - n - - error
    retry unix - - n - - error
    discard unix - - n - - discard
    local unix - n n - - local
    virtual unix - n n - - virtual
    lmtp unix - - n - - lmtp
    anvil unix - - n - 1 anvil
    scache unix - - n - 1 scache
    /etc/postfix/virtual_alias_maps.cf (sample password)
    user = postfix_user
    password = m/<~VN4XQ!G=jE[A/-
    hosts = localhost
    dbname = postfix_db
    query = SELECT goto FROM alias WHERE address='%s' AND active = true
    /etc/postfix/virtual_domains_maps.cf
    user = postfix_user
    password = m/<~VN4XQ!G=jE[A/-
    hosts = localhost
    dbname = postfix_db
    query = SELECT domain FROM domain WHERE domain='%s' AND backupmx = false AND active = true
    /etc/postfix/virtual_mailbox_limits.cf
    user = postfix_user
    password = m/<~VN4XQ!G=jE[A/-
    hosts = localhost
    dbname = postfix_db
    query = SELECT quota FROM mailbox WHERE username='%s'
    /etc/postfix/virtual_mailbox_maps.cf
    user = postfix_user
    password = m/<~VN4XQ!G=jE[A/-
    hosts = localhost
    dbname = postfix_db
    query = SELECT maildir FROM mailbox WHERE username='%s' AND active = true
    - Created the SSL key with no problem, and put it in place.
    Edited dovecot.conf:
    protocols = imap pop3
    auth_mechanisms = plain
    passdb {
    driver = sql
    args = /etc/dovecot/dovecot-sql.conf
    userdb sql {
    driver = sql
    args = /etc/dovecot/dovecot-sql.conf
    service auth {
    unix_listener auth-client {
    group = postfix
    mode = 0660
    user = postfix
    user = root
    mail_home = /var/mail/vmail/%d/%u
    mail_location = maildir:~
    ssl_cert = </etc/ssl/private/server.crt
    ssl_key = </etc/ssl/private/server.key
    dict {
    #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
    #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.ext
    !include conf.d/*.conf
    !include_try local.conf
    /etc/dovecot/dovecot-sql.conf
    driver = mysql
    connect = host=localhost dbname=postfix_db user=postfix_user password=m/<~VN4XQ!G=jE[A/-
    default_pass_scheme = MD5-CRYPT
    user_query = SELECT '/var/mail/vmail/%d/%u' as home, 'maildir:/var/mail/vmail/%d/%u' as mail, 5000 AS uid, 5000 AS gid, concat('dirsize:storage=', quota) AS quota FROM mailbox WHERE username = '%u' AND active = '1'
    password_query = SELECT username as user, password, '/var/mail/vmail/%d/%u' as userdb_home, 'maildir:/var/mail/vmail/%d/%u' as userdb_mail, 5000 as userdb_uid, 5000 as userdb_gid FROM mailbox WHERE username = '%u' AND active = '1'
    - Installed postfixadmin and roundcube and made their apache alias.
    - Made directories writable for them.
    /etc/webapps/postfixadmin/config.inc.php (note that there is no "?>" to end the script, it came just like that, and since it had no error there ill assume its normal)
    <?php
    $CONF['configured'] = true;
    $CONF['setup_password'] = '562bc24a874b0c2a7340e3da04b3fdf6:d60282f5cbc19340c73cafbb6526379be696a7c7';
    $CONF['postfix_admin_url'] = '[url]http://mydomain.com/postfixadmin[/url]';
    $CONF['postfix_admin_path'] = dirname(__FILE__);
    $CONF['default_language'] = 'en';
    $CONF['database_prefix'] = '';
    $CONF['database_tables'] = array (
    'admin' => 'admin',
    'alias' => 'alias',
    'alias_domain' => 'alias_domain',
    'config' => 'config',
    'domain' => 'domain',
    'domain_admins' => 'domain_admins',
    'fetchmail' => 'fetchmail',
    'log' => 'log',
    'mailbox' => 'mailbox',
    'vacation' => 'vacation',
    'vacation_notification' => 'vacation_notification',
    'quota' => 'quota',
    'quota2' => 'quota2',
    $CONF['admin_email'] = '[email protected]';
    $CONF['smtp_server'] = 'localhost';
    $CONF['smtp_port'] = '25';
    $CONF['encrypt'] = 'md5crypt';
    $CONF['authlib_default_flavor'] = 'md5raw';
    $CONF['dovecotpw'] = "/usr/sbin/dovecotpw";
    $CONF['min_password_length'] = 5;
    $CONF['generate_password'] = 'NO';
    $CONF['show_password'] = 'NO';
    $CONF['page_size'] = '10';
    $CONF['default_aliases'] = array (
    'abuse' => '[email protected]',
    'hostmaster' => '[email protected]',
    'postmaster' => '[email protected]',
    'webmaster' => '[email protected]'
    $CONF['domain_path'] = 'NO';
    $CONF['domain_in_mailbox'] = 'YES';
    $CONF['maildir_name_hook'] = 'NO';
    $CONF['aliases'] = '10';
    $CONF['mailboxes'] = '10';
    $CONF['maxquota'] = '10';
    $CONF['quota'] = 'NO';
    $CONF['quota_multiplier'] = '1024000';
    $CONF['transport'] = 'NO';
    $CONF['transport_options'] = array (
    'virtual', // for virtual accounts
    'local', // for system accounts
    'relay' // for backup mx
    $CONF['transport_default'] = 'virtual';
    $CONF['vacation'] = 'NO';
    $CONF['vacation_domain'] = 'autoreply.change-this-to-your.domain.tld';
    $CONF['vacation_control'] ='YES';
    $CONF['vacation_control_admin'] = 'YES';
    $CONF['alias_control'] = 'NO';
    $CONF['alias_control_admin'] = 'NO';
    $CONF['special_alias_control'] = 'NO';
    $CONF['alias_goto_limit'] = '0';
    $CONF['alias_domain'] = 'YES';
    $CONF['backup'] = 'YES';
    $CONF['sendmail'] = 'YES';
    $CONF['logging'] = 'YES';
    $CONF['fetchmail'] = 'YES';
    $CONF['fetchmail_extra_options'] = 'NO';
    $CONF['show_header_text'] = 'NO';
    $CONF['header_text'] = ':: Postfix Admin ::';
    $CONF['user_footer_link'] = "[url]http://mydomain.com[/url]";
    $CONF['show_footer_text'] = 'YES';
    $CONF['footer_text'] = 'Return to mydomain.com';
    $CONF['footer_link'] = '[url]http://mydomain.com[/url]';
    $CONF['welcome_text'] = <<<EOM
    Welcome to your new account.
    EOM;
    $CONF['emailcheck_resolve_domain']='YES';
    $CONF['show_status']='NO';
    $CONF['show_status_key']='NO';
    $CONF['show_status_text']='&nbsp;&nbsp;';
    $CONF['show_undeliverable']='NO';
    $CONF['show_undeliverable_color']='tomato';
    $CONF['show_undeliverable_exceptions']=array("unixmail.domain.ext","exchangeserver.domain.ext","gmail.com");
    $CONF['show_popimap']='NO';
    $CONF['show_popimap_color']='darkgrey';
    $CONF['show_custom_domains']=array("subdomain.domain.ext","domain2.ext");
    $CONF['show_custom_colors']=array("lightgreen","lightblue");
    $CONF['recipient_delimiter'] = "";
    $CONF['create_mailbox_subdirs_prefix']='INBOX.';
    $CONF['used_quotas'] = 'NO';
    $CONF['new_quota_table'] = 'NO';
    $CONF['theme_logo'] = 'images/logo-default.png';
    $CONF['theme_css'] = 'css/default.css';
    $CONF['xmlrpc_enabled'] = false;
    if (file_exists(dirname(__FILE__) . '/config.local.php')) {
    include(dirname(__FILE__) . '/config.local.php');
    $CONF['domain_path'] = 'YES';
    $CONF['domain_in_mailbox'] = 'YES';
    $CONF['database_type'] = 'mysqli';
    $CONF['database_host'] = 'localhost';
    $CONF['database_user'] = 'postfix_user';
    $CONF['database_password'] = 'm/<~VN4XQ!G=jE[A/-';
    $CONF['database_name'] = 'postfix_db';
    - I went to domain/postfixAdmin/setup.php and domain/roundcube/installer/ and everything was ok.
    db.inc.php (roundcube):
    <?php
    $rcmail_config = array();
    $rcmail_config['db_dsnw'] = 'mysql://roundcube_user:%3D%29CYbd9bK%210Z7%29AsWU@localhost/roundcube_db';
    $rcmail_config['db_dsnr'] = '';
    $rcmail_config['db_persistent'] = FALSE;
    $rcmail_config['db_table_users'] = 'users';
    $rcmail_config['db_table_identities'] = 'identities';
    $rcmail_config['db_table_contacts'] = 'contacts';
    $rcmail_config['db_table_contactgroups'] = 'contactgroups';
    $rcmail_config['db_table_contactgroupmembers'] = 'contactgroupmembers';
    $rcmail_config['db_table_session'] = 'session';
    $rcmail_config['db_table_cache'] = 'cache';
    $rcmail_config['db_table_cache_index'] = 'cache_index';
    $rcmail_config['db_table_cache_thread'] = 'cache_thread';
    $rcmail_config['db_table_cache_messages'] = 'cache_messages';
    $rcmail_config['db_table_dictionary'] = 'dictionary';
    $rcmail_config['db_table_searches'] = 'searches';
    $rcmail_config['db_table_system'] = 'system';
    $rcmail_config['db_sequence_users'] = 'user_ids';
    $rcmail_config['db_sequence_identities'] = 'identity_ids';
    $rcmail_config['db_sequence_contacts'] = 'contact_ids';
    $rcmail_config['db_sequence_contactgroups'] = 'contactgroups_ids';
    $rcmail_config['db_sequence_searches'] = 'search_ids';
    main.inc.php(roundcube):
    <?php
    $rcmail_config = array();
    $rcmail_config['debug_level'] = 5;
    $rcmail_config['log_driver'] = 'file';
    $rcmail_config['log_date_format'] = 'd-M-Y H:i:s O';
    $rcmail_config['syslog_id'] = 'roundcube';
    $rcmail_config['syslog_facility'] = LOG_USER;
    $rcmail_config['smtp_log'] = true;
    $rcmail_config['log_logins'] = false;
    $rcmail_config['log_session'] = false;
    $rcmail_config['sql_debug'] = false;
    $rcmail_config['imap_debug'] = false;
    $rcmail_config['ldap_debug'] = false;
    $rcmail_config['smtp_debug'] = false;
    $rcmail_config['default_host'] = 'tls://localhost/';
    $rcmail_config['default_port'] = 993;
    $rcmail_config['imap_auth_type'] = null;
    $rcmail_config['imap_delimiter'] = null;
    $rcmail_config['imap_ns_personal'] = null;
    $rcmail_config['imap_ns_other'] = null;
    $rcmail_config['imap_ns_shared'] = null;
    $rcmail_config['imap_force_caps'] = false;
    $rcmail_config['imap_force_lsub'] = false;
    $rcmail_config['imap_force_ns'] = false;
    $rcmail_config['imap_timeout'] = 0;
    $rcmail_config['imap_auth_cid'] = null;
    $rcmail_config['imap_auth_pw'] = null;
    $rcmail_config['imap_cache'] = null;
    $rcmail_config['messages_cache'] = false;
    $rcmail_config['smtp_server'] = 'tls://localhost/';
    $rcmail_config['smtp_port'] = 587;
    $rcmail_config['smtp_user'] = '';
    $rcmail_config['smtp_pass'] = '';
    $rcmail_config['smtp_auth_type'] = '';
    $rcmail_config['smtp_auth_cid'] = null;
    $rcmail_config['smtp_auth_pw'] = null;
    $rcmail_config['smtp_helo_host'] = '';
    $rcmail_config['smtp_timeout'] = 0;
    $rcmail_config['enable_installer'] = false;
    $rcmail_config['dont_override'] = array();
    $rcmail_config['support_url'] = '';
    $rcmail_config['skin_logo'] = 'sorrybutnocookie';
    $rcmail_config['auto_create_user'] = true;
    $rcmail_config['user_aliases'] = false;
    $rcmail_config['log_dir'] = 'logs/';
    $rcmail_config['temp_dir'] = 'temp/';
    $rcmail_config['message_cache_lifetime'] = '10d';
    $rcmail_config['force_https'] = false;
    $rcmail_config['use_https'] = false;
    $rcmail_config['login_autocomplete'] = 0;
    $rcmail_config['login_lc'] = 2;
    $rcmail_config['skin_include_php'] = false;
    $rcmail_config['display_version'] = false;
    $rcmail_config['session_lifetime'] = 10;
    $rcmail_config['session_domain'] = '';
    $rcmail_config['session_name'] = null;
    $rcmail_config['session_auth_name'] = null;
    $rcmail_config['session_path'] = null;
    $rcmail_config['session_storage'] = 'db';
    $rcmail_config['memcache_hosts'] = null;
    $rcmail_config['ip_check'] = true;
    $rcmail_config['referer_check'] = false;
    $rcmail_config['x_frame_options'] = 'sameorigin';
    $rcmail_config['des_key'] = '0JaV%FnEivx9e+JdH2g*?n3n';
    $rcmail_config['username_domain'] = '';
    $rcmail_config['mail_domain'] = '';
    $rcmail_config['password_charset'] = 'ISO-8859-1';
    $rcmail_config['sendmail_delay'] = 0;
    $rcmail_config['max_recipients'] = 0;
    $rcmail_config['max_group_members'] = 0;
    $rcmail_config['useragent'] = 'Roundcube Webmail/'.RCMAIL_VERSION;
    $rcmail_config['product_name'] = 'Test';
    $rcmail_config['include_host_config'] = false;
    $rcmail_config['generic_message_footer'] = '';
    $rcmail_config['generic_message_footer_html'] = '';
    $rcmail_config['http_received_header'] = false;
    $rcmail_config['http_received_header_encrypt'] = false;
    $rcmail_config['mail_header_delimiter'] = NULL;
    $rcmail_config['line_length'] = 72;
    $rcmail_config['send_format_flowed'] = true;
    $rcmail_config['mdn_use_from'] = false;
    $rcmail_config['identities_level'] = 0;
    $rcmail_config['client_mimetypes'] = null;
    $rcmail_config['mime_magic'] = null;
    $rcmail_config['mime_types'] = null;
    $rcmail_config['im_identify_path'] = null;
    $rcmail_config['im_convert_path'] = null;
    $rcmail_config['image_thumbnail_size'] = 240;
    $rcmail_config['contact_photo_size'] = 160;
    $rcmail_config['email_dns_check'] = false;
    $rcmail_config['no_save_sent_messages'] = false;
    $rcmail_config['plugins'] = array();
    $rcmail_config['message_sort_col'] = '';
    $rcmail_config['message_sort_order'] = 'DESC';
    $rcmail_config['list_cols'] = array('subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment');
    $rcmail_config['language'] = null;
    $rcmail_config['date_format'] = 'Y-m-d';
    $rcmail_config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y');
    $rcmail_config['time_format'] = 'H:i';
    $rcmail_config['time_formats'] = array('G:i', 'H:i', 'g:i a', 'h:i A');
    $rcmail_config['date_short'] = 'D H:i';
    $rcmail_config['date_long'] = 'Y-m-d H:i';
    $rcmail_config['drafts_mbox'] = 'Drafts';
    $rcmail_config['junk_mbox'] = 'Junk';
    $rcmail_config['sent_mbox'] = 'Sent';
    $rcmail_config['trash_mbox'] = 'Trash';
    $rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
    $rcmail_config['create_default_folders'] = false;
    $rcmail_config['protect_default_folders'] = true;
    $rcmail_config['quota_zero_as_unlimited'] = false;
    $rcmail_config['enable_spellcheck'] = false;
    $rcmail_config['spellcheck_dictionary'] = false;
    $rcmail_config['spellcheck_engine'] = 'googie';
    $rcmail_config['spellcheck_uri'] = '';
    $rcmail_config['spellcheck_languages'] = NULL;
    $rcmail_config['spellcheck_ignore_caps'] = false;
    $rcmail_config['spellcheck_ignore_nums'] = false;
    $rcmail_config['spellcheck_ignore_syms'] = false;
    $rcmail_config['recipients_separator'] = ',';
    $rcmail_config['max_pagesize'] = 200;
    $rcmail_config['min_refresh_interval'] = 60;
    $rcmail_config['upload_progress'] = false;
    $rcmail_config['undo_timeout'] = 0;
    $rcmail_config['address_book_type'] = 'sql';
    $rcmail_config['ldap_public'] = array();
    $rcmail_config['autocomplete_addressbooks'] = array('sql');
    $rcmail_config['autocomplete_min_length'] = 1;
    $rcmail_config['autocomplete_threads'] = 0;
    $rcmail_config['autocomplete_max'] = 15;
    $rcmail_config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}';
    $rcmail_config['addressbook_search_mode'] = 0;
    $rcmail_config['default_charset'] = 'ISO-8859-1';
    $rcmail_config['skin'] = 'larry';
    $rcmail_config['mail_pagesize'] = 50;
    $rcmail_config['addressbook_pagesize'] = 50;
    $rcmail_config['addressbook_sort_col'] = 'surname';
    $rcmail_config['addressbook_name_listing'] = 0;
    $rcmail_config['timezone'] = 'auto';
    $rcmail_config['prefer_html'] = true;
    $rcmail_config['show_images'] = 0;
    $rcmail_config['message_extwin'] = false;
    $rcmail_config['compose_extwin'] = false;
    $rcmail_config['htmleditor'] = 0;
    $rcmail_config['prettydate'] = true;
    $rcmail_config['draft_autosave'] = 300;
    $rcmail_config['preview_pane'] = false;
    $rcmail_config['preview_pane_mark_read'] = 0;
    $rcmail_config['logout_purge'] = false;
    $rcmail_config['logout_expunge'] = false;
    $rcmail_config['inline_images'] = true;
    $rcmail_config['mime_param_folding'] = 0;
    $rcmail_config['skip_deleted'] = false;
    $rcmail_config['read_when_deleted'] = true;
    $rcmail_config['flag_for_deletion'] = false;
    $rcmail_config['refresh_interval'] = 60;
    $rcmail_config['check_all_folders'] = false;
    $rcmail_config['display_next'] = true;
    $rcmail_config['autoexpand_threads'] = 0;
    $rcmail_config['reply_mode'] = 0;
    $rcmail_config['strip_existing_sig'] = true;
    $rcmail_config['show_sig'] = 1;
    $rcmail_config['force_7bit'] = false;
    $rcmail_config['search_mods'] = null;
    $rcmail_config['addressbook_search_mods'] = null;
    $rcmail_config['delete_always'] = false;
    $rcmail_config['delete_junk'] = false;
    $rcmail_config['mdn_requests'] = 0;
    $rcmail_config['mdn_default'] = 0;
    $rcmail_config['dsn_default'] = 0;
    $rcmail_config['reply_same_folder'] = false;
    $rcmail_config['forward_attachment'] = false;
    $rcmail_config['default_addressbook'] = null;
    $rcmail_config['spellcheck_before_send'] = false;
    $rcmail_config['autocomplete_single'] = false;
    $rcmail_config['default_font'] = 'Verdana';
    - From what i can see, postfixadmin used and populated its database, but not roundcube.
    - I can open postfixadmin and log in with no apparent errors (not that i know what to do with it instead of roundcube, but at least works...)
    - Whenever i open roundcube it begins to output errors everywhere about db connection (I was only able after changing its .htaccess to Allow from all, is it a bad idea?)
    DB Error in /usr/share/webapps/roundcubemail/program/lib/Roundcube/rcube_db.php (416): [1146] Table 'roundcube_db.session' doesn't exist (SQL Query: SELECT vars, ip, changed FROM session WHERE sess_id = 'pq5ofv7ja0gh2sunsg38jmd3g1')
    Warning: session_start(): Cannot send session cache limiter - headers already sent in /usr/share/webapps/roundcubemail/program/lib/Roundcube/rcube.php on line 445
    DB Error: [1146] Table 'roundcube_db.session' doesn't exist
    DATABASE ERROR: CONNECTION FAILED!
    Unable to connect to the database!
    Please contact your server-administrator.
    DB Error in /usr/share/webapps/roundcubemail/program/lib/Roundcube/rcube_db.php (416): [1146] Table 'roundcube_db.session' doesn't exist (SQL Query: INSERT INTO session (sess_id, vars, ip, created, changed) VALUES ('pq5ofv7ja0gh2sunsg38jmd3g1', 'dGVtcHxiOjE7bGFuZ3VhZ2V8czo1OiJlbl9VUyI7dGFza3xzOjU6ImxvZ2luIjs=', 'xxx.xxx.xxx.xxx', '2014-02-08 07:34:46', '2014-02-08 07:34:46'))
    Thats all i know. Whats wrong? (i already tried to set db logins with no pw at all, but still with the same problems)
    How far am i to be able to send/receive one email? Please, tell me i am close...
    Mail servers could be so much more linear to set up
    Thanks for your help. Time to get some sleep!

    The roundcube db schema needs to setup manually. See /usr/share/webapps/roundcube/INSTALL
    Also, from your /etc/webapps/postfixadmin/config.inc.php:
    $CONF['domain_path'] = 'NO';
    $CONF['domain_in_mailbox'] = 'YES';
    $CONF['maildir_name_hook'] = 'NO';
    ..which results in /var/mail/vmail/[email protected]
    From your dovecot.conf
    mail_home = /var/mail/vmail/%d/%u
    ...which results in /var/mail/vmail/domain.com/user
    That doesn't fit together.

  • Mail server delay issue Please Help.

    Hi,
    My mail server is working fine for few domains, It is perfectly delivering all the mails but few the domains are unable to receive our mails. When i looked into the mail log it is giving the delay message.
    Please find the below messages.
    1)
    Jun 9 16:01:38 nova postfix/smtp[38234]: 9DDF7912BD93: to=<[email protected]>, relay=127.0.0.1[127.0.0.1]:10024, delay=21, delays=4/0/0/17, dsn=2.0.0, status=sent (250 2.0.0 Ok, id=44588-05, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as 0E3F4912BDDC)
    2)
    Jun 9 15:42:20 nova postfix/error[42342]: 263D6912B4CD: to=<[email protected]>, relay=none, delay=0.34, delays=0.31/0/0/0.03, dsn=4.3.0, status=deferred (unknown mail transport error)
    And when i Looked into my mail log for errors there are few entries which i find strange. Those users are not exist in my OD but they are trying to connect send mails.
    Please find below
    sh-3.2# cat /var/log/mail.log | grep error
    Jun 9 15:30:46 nova postfix/local[40650]: error: od[getpwnam_ext]: No record for user cb
    Jun 9 15:30:46 nova postfix/local[40114]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:30:46 nova postfix/local[40891]: error: od[getpwnam_ext]: No record for user jiqoyywxw
    Jun 9 15:30:47 nova postfix/local[40650]: error: od[getpwnam_ext]: No record for user daniellenn
    Jun 9 15:30:47 nova postfix/local[40901]: error: od[getpwnam_ext]: No record for user ghkb
    Jun 9 15:30:47 nova postfix/local[40114]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 15:30:47 nova postfix/local[40891]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:30:47 nova postfix/local[40650]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:30:56 nova postfix/local[40901]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 15:31:09 nova postfix/local[40891]: error: od[getpwnam_ext]: No record for user thecoverstory.comdanielle
    Jun 9 15:32:54 nova postfix/local[40114]: error: od[getpwnam_ext]: No record for user tcsd
    Jun 9 15:32:54 nova postfix/local[40114]: fatal: too many errors - program terminated
    Jun 9 15:32:56 nova postfix/error[41183]: 76F23912AFE0: to=<[email protected]>, relay=none, delay=1.6, delays=0.39/1.2/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:33:46 nova postfix/error[41183]: 22213912B011: to=<[email protected]>, relay=none, delay=0.03, delays=0.03/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:33:57 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user mnbfu
    Jun 9 15:34:53 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user pekihy
    Jun 9 15:35:02 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user onja
    Jun 9 15:35:02 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user sqvp
    Jun 9 15:35:08 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user yaov
    Jun 9 15:35:36 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user daniellenn
    Jun 9 15:36:04 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:36:34 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user hoto
    Jun 9 15:37:47 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user 3djobarnett
    Jun 9 15:37:59 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:37:59 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:38:54 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user ingrid
    Jun 9 15:39:02 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user umdndg
    Jun 9 15:39:14 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user mark
    Jun 9 15:39:18 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 15:39:23 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:40:13 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user baasphoto
    Jun 9 15:40:13 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:40:13 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:40:13 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user ffdg
    Jun 9 15:40:13 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user helloitmenice
    Jun 9 15:40:13 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 15:40:20 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user kated
    Jun 9 15:40:20 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user carine
    Jun 9 15:40:21 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user martijn
    Jun 9 15:40:21 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user teri
    Jun 9 15:40:28 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:40:28 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user keren
    Jun 9 15:40:28 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user tt
    Jun 9 15:40:39 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:40:39 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:40:46 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:40:46 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user tcsd
    Jun 9 15:41:07 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user nadia
    Jun 9 15:41:10 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user hainy
    Jun 9 15:41:31 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:41:31 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 15:41:31 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:41:31 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:41:31 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user ffdg
    Jun 9 15:41:31 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user sonja
    Jun 9 15:41:37 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:41:37 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user ffdg
    Jun 9 15:41:39 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user pgqq
    Jun 9 15:41:41 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user helen
    Jun 9 15:41:41 nova postfix/local[41293]: fatal: too many errors - program terminated
    Jun 9 15:41:42 nova postfix/error[42342]: CE251912B46B: to=<[email protected]>, relay=none, delay=1.1, delays=0.03/1/0/0.07, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:18 nova postfix/error[42342]: 6DA95912B4B3: to=<[email protected]>, relay=none, delay=0.09, delays=0.05/0/0/0.04, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 263D6912B4CD: to=<[email protected]>, relay=none, delay=0.34, delays=0.31/0/0/0.03, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:30 nova postfix/error[42342]: 5AC0A912B4E9: to=<[email protected]>, relay=none, delay=0.03, delays=0.03/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:30 nova postfix/error[42342]: 5AC0A912B4E9: to=<[email protected]>, relay=none, delay=0.04, delays=0.03/0/0/0.01, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:30 nova postfix/error[42342]: 5AC0A912B4E9: to=<[email protected]>, relay=none, delay=0.04, delays=0.03/0/0/0.01, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:44 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user thecoverstory.comdanielle
    Jun 9 15:42:52 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user umdndg
    Jun 9 15:43:26 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user sib
    Jun 9 15:43:41 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user baasphoto
    Jun 9 15:43:41 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user helloitmenice
    Jun 9 15:43:41 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 15:43:41 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user cs
    Jun 9 15:44:17 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:44:20 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user daniellenn
    Jun 9 15:44:41 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user vakakiteri
    Jun 9 15:44:47 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user vakakiteri
    Jun 9 15:44:47 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user webmaster
    Jun 9 15:44:48 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user roupert
    Jun 9 15:44:52 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:46:03 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:46:03 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:46:03 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:46:03 nova postfix/local[42882]: error: od[getpwnam_ext]: No record for user carine
    Jun 9 15:46:03 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:46:03 nova postfix/local[42888]: error: od[getpwnam_ext]: No record for user esther.gerlings
    Jun 9 15:46:03 nova postfix/local[42891]: error: od[getpwnam_ext]: No record for user esther.gerlingsn
    Jun 9 15:46:03 nova postfix/local[42894]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:46:03 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 15:46:07 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user photo
    Jun 9 15:46:12 nova postfix/local[42897]: error: od[getpwnam_ext]: No record for user cb
    Jun 9 15:46:51 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user jiqoyywxw
    Jun 9 15:47:01 nova postfix/local[42882]: error: od[getpwnam_ext]: No record for user keren
    Jun 9 15:47:17 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user esther.gerlings
    Jun 9 15:48:49 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user sonja
    Jun 9 15:48:57 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user unsubscribe
    Jun 9 15:49:47 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:50:08 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:50:40 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user fvhzri
    Jun 9 15:50:47 nova postfix/local[43464]: error: od[getpwnam_ext]: No record for user 3djobarnett
    Jun 9 15:50:47 nova postfix/local[43466]: error: od[getpwnam_ext]: No record for user catchthismail
    Jun 9 15:50:47 nova postfix/local[43468]: error: od[getpwnam_ext]: No record for user helloitmenice
    Jun 9 15:50:47 nova postfix/local[43469]: error: od[getpwnam_ext]: No record for user rxo
    Jun 9 15:50:47 nova postfix/local[43473]: error: od[getpwnam_ext]: No record for user cb
    Jun 9 15:50:47 nova postfix/local[43475]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:50:47 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user jiqoyywxw
    Jun 9 15:50:47 nova postfix/local[43477]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 15:50:47 nova postfix/local[43480]: error: od[getpwnam_ext]: No record for user helen
    Jun 9 15:51:14 nova postfix/local[43468]: error: od[getpwnam_ext]: No record for user buie
    Jun 9 15:52:22 nova postfix/local[43464]: error: od[getpwnam_ext]: No record for user ther.gerlings
    Jun 9 15:52:26 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user kated
    Jun 9 15:53:17 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user onja
    Jun 9 15:53:17 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user sqvp
    Jun 9 15:53:28 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user a1aaa1azzzz1zaaaaa
    Jun 9 15:53:49 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user 6tcs
    Jun 9 15:54:04 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:54:10 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user ytmv
    Jun 9 15:54:32 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 15:55:05 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:55:48 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:55:50 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user carine
    Jun 9 15:55:50 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user anders
    Jun 9 15:55:59 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user fvhzri
    Jun 9 15:56:17 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user unsubscribe
    Jun 9 15:56:34 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:56:35 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user hoto
    Jun 9 15:56:38 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user pekihy
    Jun 9 15:57:38 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user tommy
    Jun 9 15:57:51 nova postfix/local[44342]: error: od[getpwnam_ext]: No record for user michailkritch
    Jun 9 15:58:32 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:58:32 nova postfix/local[44342]: error: od[getpwnam_ext]: No record for user kated
    Jun 9 15:58:32 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user 3djobarnett
    Jun 9 15:58:32 nova postfix/local[44438]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:58:32 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user nadia
    Jun 9 15:58:33 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user nyeo
    Jun 9 15:58:33 nova postfix/local[44446]: error: od[getpwnam_ext]: No record for user roupert
    Jun 9 15:58:33 nova postfix/local[44342]: error: od[getpwnam_ext]: No record for user sonja
    Jun 9 15:58:33 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user suzanne
    Jun 9 15:59:22 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 16:00:31 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user keren
    Jun 9 16:01:00 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user xujk
    Jun 9 16:01:00 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user tt
    Jun 9 16:01:01 nova postfix/local[44449]: error: od[getpwnam_ext]: No record for user unsubscribe
    Jun 9 16:01:03 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 16:01:42 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user barnett
    Jun 9 16:01:43 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user postmastern
    Jun 9 16:02:09 nova postfix/local[44449]: error: od[getpwnam_ext]: No record for user baasphoto
    Jun 9 16:02:21 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user petgord34truew
    Jun 9 16:03:07 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 16:04:09 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user thecoverstory.comdanielle
    Jun 9 16:05:32 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 16:05:34 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user helen
    Jun 9 16:05:36 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user onja
    Jun 9 16:05:54 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user ingrid
    Jun 9 16:06:12 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user ri
    Jun 9 16:07:04 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user annejaffer
    Jun 9 16:07:07 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user mark
    Jun 9 16:07:30 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 16:07:31 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 16:07:47 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 16:08:06 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 16:08:35 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 16:08:35 nova postfix/local[45152]: fatal: too many errors - program terminated
    Jun 9 16:08:36 nova postfix/error[45774]: 1044B912C0D1: to=<[email protected]>, relay=none, delay=1.3, delays=0.07/1.2/0/0.05, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 16:08:38 nova postfix/error[45774]: 861AA912C0E4: to=<[email protected]>, relay=none, delay=0.03, delays=0.02/0.01/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 16:08:51 nova postfix/error[45774]: EF78A912C0F3: to=<[email protected]>, relay=none, delay=0.15, delays=0.14/0.01/0/0.01, dsn=4.3.0, status=deferred (unknown mail transport error)
    Looking forward to your help and support.

    Hi,
    My mail server is working fine for few domains, It is perfectly delivering all the mails but few the domains are unable to receive our mails. When i looked into the mail log it is giving the delay message.
    Please find the below messages.
    1)
    Jun 9 16:01:38 nova postfix/smtp[38234]: 9DDF7912BD93: to=<[email protected]>, relay=127.0.0.1[127.0.0.1]:10024, delay=21, delays=4/0/0/17, dsn=2.0.0, status=sent (250 2.0.0 Ok, id=44588-05, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as 0E3F4912BDDC)
    2)
    Jun 9 15:42:20 nova postfix/error[42342]: 263D6912B4CD: to=<[email protected]>, relay=none, delay=0.34, delays=0.31/0/0/0.03, dsn=4.3.0, status=deferred (unknown mail transport error)
    And when i Looked into my mail log for errors there are few entries which i find strange. Those users are not exist in my OD but they are trying to connect send mails.
    Please find below
    sh-3.2# cat /var/log/mail.log | grep error
    Jun 9 15:30:46 nova postfix/local[40650]: error: od[getpwnam_ext]: No record for user cb
    Jun 9 15:30:46 nova postfix/local[40114]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:30:46 nova postfix/local[40891]: error: od[getpwnam_ext]: No record for user jiqoyywxw
    Jun 9 15:30:47 nova postfix/local[40650]: error: od[getpwnam_ext]: No record for user daniellenn
    Jun 9 15:30:47 nova postfix/local[40901]: error: od[getpwnam_ext]: No record for user ghkb
    Jun 9 15:30:47 nova postfix/local[40114]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 15:30:47 nova postfix/local[40891]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:30:47 nova postfix/local[40650]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:30:56 nova postfix/local[40901]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 15:31:09 nova postfix/local[40891]: error: od[getpwnam_ext]: No record for user thecoverstory.comdanielle
    Jun 9 15:32:54 nova postfix/local[40114]: error: od[getpwnam_ext]: No record for user tcsd
    Jun 9 15:32:54 nova postfix/local[40114]: fatal: too many errors - program terminated
    Jun 9 15:32:56 nova postfix/error[41183]: 76F23912AFE0: to=<[email protected]>, relay=none, delay=1.6, delays=0.39/1.2/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:33:46 nova postfix/error[41183]: 22213912B011: to=<[email protected]>, relay=none, delay=0.03, delays=0.03/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:33:57 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user mnbfu
    Jun 9 15:34:53 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user pekihy
    Jun 9 15:35:02 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user onja
    Jun 9 15:35:02 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user sqvp
    Jun 9 15:35:08 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user yaov
    Jun 9 15:35:36 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user daniellenn
    Jun 9 15:36:04 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:36:34 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user hoto
    Jun 9 15:37:47 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user 3djobarnett
    Jun 9 15:37:59 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:37:59 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:38:54 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user ingrid
    Jun 9 15:39:02 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user umdndg
    Jun 9 15:39:14 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user mark
    Jun 9 15:39:18 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 15:39:23 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:40:13 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user baasphoto
    Jun 9 15:40:13 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:40:13 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:40:13 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user ffdg
    Jun 9 15:40:13 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user helloitmenice
    Jun 9 15:40:13 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 15:40:20 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user kated
    Jun 9 15:40:20 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user carine
    Jun 9 15:40:21 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user martijn
    Jun 9 15:40:21 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user teri
    Jun 9 15:40:28 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:40:28 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user keren
    Jun 9 15:40:28 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user tt
    Jun 9 15:40:39 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:40:39 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:40:46 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:40:46 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user tcsd
    Jun 9 15:41:07 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user nadia
    Jun 9 15:41:10 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user hainy
    Jun 9 15:41:31 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:41:31 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 15:41:31 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:41:31 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:41:31 nova postfix/local[41633]: error: od[getpwnam_ext]: No record for user ffdg
    Jun 9 15:41:31 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user sonja
    Jun 9 15:41:37 nova postfix/local[42140]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 15:41:37 nova postfix/local[41411]: error: od[getpwnam_ext]: No record for user ffdg
    Jun 9 15:41:39 nova postfix/local[42146]: error: od[getpwnam_ext]: No record for user pgqq
    Jun 9 15:41:41 nova postfix/local[41293]: error: od[getpwnam_ext]: No record for user helen
    Jun 9 15:41:41 nova postfix/local[41293]: fatal: too many errors - program terminated
    Jun 9 15:41:42 nova postfix/error[42342]: CE251912B46B: to=<[email protected]>, relay=none, delay=1.1, delays=0.03/1/0/0.07, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:18 nova postfix/error[42342]: 6DA95912B4B3: to=<[email protected]>, relay=none, delay=0.09, delays=0.05/0/0/0.04, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 263D6912B4CD: to=<[email protected]>, relay=none, delay=0.34, delays=0.31/0/0/0.03, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:20 nova postfix/error[42342]: 79CCD912B4D2: to=<[email protected]>, relay=none, delay=0.23, delays=0.22/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:30 nova postfix/error[42342]: 5AC0A912B4E9: to=<[email protected]>, relay=none, delay=0.03, delays=0.03/0/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:30 nova postfix/error[42342]: 5AC0A912B4E9: to=<[email protected]>, relay=none, delay=0.04, delays=0.03/0/0/0.01, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:30 nova postfix/error[42342]: 5AC0A912B4E9: to=<[email protected]>, relay=none, delay=0.04, delays=0.03/0/0/0.01, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 15:42:44 nova postfix/local[42147]: error: od[getpwnam_ext]: No record for user thecoverstory.comdanielle
    Jun 9 15:42:52 nova postfix/local[42144]: error: od[getpwnam_ext]: No record for user umdndg
    Jun 9 15:43:26 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user sib
    Jun 9 15:43:41 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user baasphoto
    Jun 9 15:43:41 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user helloitmenice
    Jun 9 15:43:41 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 15:43:41 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user cs
    Jun 9 15:44:17 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:44:20 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user daniellenn
    Jun 9 15:44:41 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user vakakiteri
    Jun 9 15:44:47 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user vakakiteri
    Jun 9 15:44:47 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user webmaster
    Jun 9 15:44:48 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user roupert
    Jun 9 15:44:52 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user esther.gerlingsnn
    Jun 9 15:46:03 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:46:03 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:46:03 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:46:03 nova postfix/local[42882]: error: od[getpwnam_ext]: No record for user carine
    Jun 9 15:46:03 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:46:03 nova postfix/local[42888]: error: od[getpwnam_ext]: No record for user esther.gerlings
    Jun 9 15:46:03 nova postfix/local[42891]: error: od[getpwnam_ext]: No record for user esther.gerlingsn
    Jun 9 15:46:03 nova postfix/local[42894]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:46:03 nova postfix/local[42583]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 15:46:07 nova postfix/local[42615]: error: od[getpwnam_ext]: No record for user photo
    Jun 9 15:46:12 nova postfix/local[42897]: error: od[getpwnam_ext]: No record for user cb
    Jun 9 15:46:51 nova postfix/local[42613]: error: od[getpwnam_ext]: No record for user jiqoyywxw
    Jun 9 15:47:01 nova postfix/local[42882]: error: od[getpwnam_ext]: No record for user keren
    Jun 9 15:47:17 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user esther.gerlings
    Jun 9 15:48:49 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user sonja
    Jun 9 15:48:57 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user unsubscribe
    Jun 9 15:49:47 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:50:08 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 15:50:40 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user fvhzri
    Jun 9 15:50:47 nova postfix/local[43464]: error: od[getpwnam_ext]: No record for user 3djobarnett
    Jun 9 15:50:47 nova postfix/local[43466]: error: od[getpwnam_ext]: No record for user catchthismail
    Jun 9 15:50:47 nova postfix/local[43468]: error: od[getpwnam_ext]: No record for user helloitmenice
    Jun 9 15:50:47 nova postfix/local[43469]: error: od[getpwnam_ext]: No record for user rxo
    Jun 9 15:50:47 nova postfix/local[43473]: error: od[getpwnam_ext]: No record for user cb
    Jun 9 15:50:47 nova postfix/local[43475]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:50:47 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user jiqoyywxw
    Jun 9 15:50:47 nova postfix/local[43477]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 15:50:47 nova postfix/local[43480]: error: od[getpwnam_ext]: No record for user helen
    Jun 9 15:51:14 nova postfix/local[43468]: error: od[getpwnam_ext]: No record for user buie
    Jun 9 15:52:22 nova postfix/local[43464]: error: od[getpwnam_ext]: No record for user ther.gerlings
    Jun 9 15:52:26 nova postfix/local[42886]: error: od[getpwnam_ext]: No record for user kated
    Jun 9 15:53:17 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user onja
    Jun 9 15:53:17 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user sqvp
    Jun 9 15:53:28 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user a1aaa1azzzz1zaaaaa
    Jun 9 15:53:49 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user 6tcs
    Jun 9 15:54:04 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:54:10 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user ytmv
    Jun 9 15:54:32 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 15:55:05 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 15:55:48 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:55:50 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user carine
    Jun 9 15:55:50 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user anders
    Jun 9 15:55:59 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user fvhzri
    Jun 9 15:56:17 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user unsubscribe
    Jun 9 15:56:34 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 15:56:35 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user hoto
    Jun 9 15:56:38 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user pekihy
    Jun 9 15:57:38 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user tommy
    Jun 9 15:57:51 nova postfix/local[44342]: error: od[getpwnam_ext]: No record for user michailkritch
    Jun 9 15:58:32 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user cguys
    Jun 9 15:58:32 nova postfix/local[44342]: error: od[getpwnam_ext]: No record for user kated
    Jun 9 15:58:32 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user 3djobarnett
    Jun 9 15:58:32 nova postfix/local[44438]: error: od[getpwnam_ext]: No record for user katherine
    Jun 9 15:58:32 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user nadia
    Jun 9 15:58:33 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user nyeo
    Jun 9 15:58:33 nova postfix/local[44446]: error: od[getpwnam_ext]: No record for user roupert
    Jun 9 15:58:33 nova postfix/local[44342]: error: od[getpwnam_ext]: No record for user sonja
    Jun 9 15:58:33 nova postfix/local[43804]: error: od[getpwnam_ext]: No record for user suzanne
    Jun 9 15:59:22 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user anne
    Jun 9 16:00:31 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user keren
    Jun 9 16:01:00 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user xujk
    Jun 9 16:01:00 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user tt
    Jun 9 16:01:01 nova postfix/local[44449]: error: od[getpwnam_ext]: No record for user unsubscribe
    Jun 9 16:01:03 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 16:01:42 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user barnett
    Jun 9 16:01:43 nova postfix/local[43798]: error: od[getpwnam_ext]: No record for user postmastern
    Jun 9 16:02:09 nova postfix/local[44449]: error: od[getpwnam_ext]: No record for user baasphoto
    Jun 9 16:02:21 nova postfix/local[44442]: error: od[getpwnam_ext]: No record for user petgord34truew
    Jun 9 16:03:07 nova postfix/local[44444]: error: od[getpwnam_ext]: No record for user armand
    Jun 9 16:04:09 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user thecoverstory.comdanielle
    Jun 9 16:05:32 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user anielle
    Jun 9 16:05:34 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user helen
    Jun 9 16:05:36 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user onja
    Jun 9 16:05:54 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user ingrid
    Jun 9 16:06:12 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user ri
    Jun 9 16:07:04 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user annejaffer
    Jun 9 16:07:07 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user mark
    Jun 9 16:07:30 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 16:07:31 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user annemarie
    Jun 9 16:07:47 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user iemg
    Jun 9 16:08:06 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user daniellek
    Jun 9 16:08:35 nova postfix/local[45152]: error: od[getpwnam_ext]: No record for user kuytendaniellek
    Jun 9 16:08:35 nova postfix/local[45152]: fatal: too many errors - program terminated
    Jun 9 16:08:36 nova postfix/error[45774]: 1044B912C0D1: to=<[email protected]>, relay=none, delay=1.3, delays=0.07/1.2/0/0.05, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 16:08:38 nova postfix/error[45774]: 861AA912C0E4: to=<[email protected]>, relay=none, delay=0.03, delays=0.02/0.01/0/0, dsn=4.3.0, status=deferred (unknown mail transport error)
    Jun 9 16:08:51 nova postfix/error[45774]: EF78A912C0F3: to=<[email protected]>, relay=none, delay=0.15, delays=0.14/0.01/0/0.01, dsn=4.3.0, status=deferred (unknown mail transport error)
    Looking forward to your help and support.

  • Mavericks mail server "user unknown" error

    For some reason, the mail server bounces the email sent to local network users and returns a "user unknown" error. The same error is received when an email from an external domain is sent to one of the open directory associated email addresses.
    However, sending email from these accounts works just fine, just like sending and receiving email associated with the diradmin account.

    Hi Jeffrey,
    Changed the mx record to the juffrou......net domain, without succes.
    Please find the export below.
    Regards,
    Lex
    juffrouwjannie:~ xandstorm-juffrpuw-jannie$ sudo serveradmin settings mail
    Password:
    mail:postfix:smtpd_pw_server_security_options:_array_index:0 = "cram-md5"
    mail:postfix:smtpd_pw_server_security_options:_array_index:1 = "digest-md5"
    mail:postfix:smtpd_pw_server_security_options:_array_index:2 = "gssapi"
    mail:postfix:smtpd_pw_server_security_options:_array_index:3 = "login"
    mail:postfix:smtpd_pw_server_security_options:_array_index:4 = "plain"
    mail:postfix:spam_quarantine = "[email protected]"
    mail:postfix:smtp_reject_list_enabled = no
    mail:postfix:smtp_sasl_auth_enable = no
    mail:postfix:submit_cred:juffrouwjannie.vanderwerff.net:username = "submit"
    mail:postfix:submit_cred:juffrouwjannie.vanderwerff.net:password = "lvFBZ9973YcUBWtAPEX7Dq"
    mail:postfix:submit_cred:XANDSTORM-JUFFRPUW-JANNIEs-Mac-mini.local:username = "submit"
    mail:postfix:submit_cred:XANDSTORM-JUFFRPUW-JANNIEs-Mac-mini.local:password = ""
    mail:postfix:smtp_auth_relay_dict:smtp_auth_relay_userid = ""
    mail:postfix:smtp_auth_relay_dict:smtp_auth_relay_pwd = ""
    mail:postfix:smtp_auth_relay_dict:smtp_auth_relay_host = ""
    mail:postfix:client_permit_mynetworks = yes
    mail:postfix:smtpd_tls_cert_file = "/etc/certificates/juffrouwjannie.vanderwerff.net.69F8227930804D0241A279CBC08AF DFBA687F300.cert.pem"
    mail:postfix:maps_rbl_domains_enabled = yes
    mail:postfix:spam_subject_tag = "***JUNK MAIL*** "
    mail:postfix:smtpd_tls_CAfile = "/etc/certificates/juffrouwjannie.vanderwerff.net.69F8227930804D0241A279CBC08AF DFBA687F300.chain.pem"
    mail:postfix:message_size_limit_enabled = yes
    mail:postfix:virus_db_last_update = "2014-04-19 19:50:45 +0000"
    mail:postfix:mail_enabled_groups = _empty_array
    mail:postfix:add_whitelist_domain:_array_index:0 = "XANDSTORM-JUFFRPUW-JANNIEs-Mac-mini.local"
    mail:postfix:add_whitelist_domain:_array_index:1 = "vanderwerff.net"
    mail:postfix:virus_scan_enabled = no
    mail:postfix:spam_notify_admin_email = "[email protected]"
    mail:postfix:virus_db_log_level = "info"
    mail:postfix:black_hole_domains:_array_index:0 = "zen.spamhaus.org"
    mail:postfix:spam_ok_locales = "en"
    mail:postfix:spam_scan_enabled = yes
    mail:postfix:virus_quarantine = "[email protected]"
    mail:postfix:reject_unauth_piplining_enabled = no
    mail:postfix:spam_rewrite_subject = yes
    mail:postfix:message_size_limit = 10485760
    mail:postfix:mynetworks:_array_index:0 = "127.0.0.0/8"
    mail:postfix:mynetworks:_array_index:1 = "[::1]/128"
    mail:postfix:virus_log_level = "info"
    mail:postfix:host_whitelist:_array_index:0 = "juffrouwjannie.vanderwerff.net"
    mail:postfix:rbl_override_list = _empty_array
    mail:postfix:greylist_enabled = no
    mail:postfix:list_server_log_level = "info"
    mail:postfix:group_expansion:start_interval = 10
    mail:postfix:group_expansion:enable_group_expansion = no
    mail:postfix:virus_notify_recipients = no
    mail:postfix:luser_relay_enabled = no
    mail:postfix:mydomain = "vanderwerff.net"
    mail:postfix:enable_list_server = yes
    mail:postfix:mydestination:_array_index:0 = "localhost"
    mail:postfix:mydestination:_array_index:1 = "$mydomain"
    mail:postfix:virus_notify_admin_email = "[email protected]"
    mail:postfix:enable_virtual_domains = no
    mail:postfix:spam_notify_admin = no
    mail:postfix:required_hits = 6
    mail:postfix:add_whitelist_host:_array_index:0 = "juffrouwjannie.vanderwerff.net"
    mail:postfix:always_bcc_enabled = no
    mail:postfix:enable_var_mail = no
    mail:postfix:enable_smtp = yes
    mail:postfix:smtpd_tls_key_file = "/etc/certificates/juffrouwjannie.vanderwerff.net.69F8227930804D0241A279CBC08AF DFBA687F300.key.pem"
    mail:postfix:relayhost = ""
    mail:postfix:mynetworks_enabled = no
    mail:postfix:virtual_domains = _empty_array
    mail:postfix:spam_ok_languages = "en"
    mail:postfix:rbl_override_enabled = no
    mail:postfix:log_rolling_days = 1
    mail:postfix:enable_smtp_in = yes
    mail:postfix:virtual_users_maps = _empty_array
    mail:postfix:tls_server_options = "require"
    mail:postfix:spam_action = "deliver"
    mail:postfix:log_rolling_days_enabled = yes
    mail:postfix:list_server_post_to_archve = no
    mail:postfix:spam_log_level = "warn"
    mail:postfix:smtp_uce_controlls = 1
    mail:postfix:relayhost_enabled = no
    mail:postfix:list_server_share_archives = no
    mail:postfix:virus_action = "delete"
    mail:postfix:virus_db_update_days = 12
    mail:postfix:virus_notify_admin = no
    mail:postfix:domain_whitelist:_array_index:0 = "XANDSTORM-JUFFRPUW-JANNIEs-Mac-mini.local"
    mail:postfix:domain_whitelist:_array_index:1 = "vanderwerff.net"
    mail:postfix:enable_smtp_out = yes
    mail:postfix:text_only_attachments = no
    mail:postfix:reject_unknown_client_enabled = no
    mail:postfix:log_level = "info"
    mail:postfix:myhostname = "juffrouwjannie.vanderwerff.net"
    mail:global:auto_auth = no
    mail:global:skip_enable_service_check = no
    mail:global:service_data_path = "/Library/Server/Mail"
    mail:imap:aps_topic = "com.apple.mail.XServer.0051960a-2429-481a-b784-c073eed597e1"
    mail:imap:servername = ""
    mail:imap:imap_auth_clear = yes
    mail:imap:auth_gssapi_hostname = ""
    mail:imap:admins = _empty_array
    mail:imap:lmtp_luser_relay_enabled = no
    mail:imap:lmtp_luser_relay = ""
    mail:imap:pop_auth_clear = yes
    mail:imap:enable_listid_autosave = "no"
    mail:imap:max_imap_connections = 1000
    mail:imap:log_level = "info"
    mail:imap:tls_key_file = "/etc/certificates/juffrouwjannie.vanderwerff.net.69F8227930804D0241A279CBC08AF DFBA687F300.key.pem"
    mail:imap:imap_auth_plain = yes
    mail:imap:postmaster_address = "[email protected]"
    mail:imap:quotawarn = 80
    mail:imap:enable_quota_warnings = no
    mail:imap:pop_auth_gssapi = no
    mail:imap:junk_mail_userid = "junkmail"
    mail:imap:global_quota = 0
    mail:imap:partitions = _empty_array
    mail:imap:tls_ca_file = "/etc/certificates/juffrouwjannie.vanderwerff.net.69F8227930804D0241A279CBC08AF DFBA687F300.chain.pem"
    mail:imap:enforce_quotas = no
    mail:imap:not_junk_mail_userid = "notjunkmail"
    mail:imap:imap_auth_digest_md5 = yes
    mail:imap:request_enable_webmail = no
    mail:imap:client_cert_enabled = no
    mail:imap:aps_topic_enabled = yes
    mail:imap:imap_auth_gssapi = no
    mail:imap:tls_server_options = "require"
    mail:imap:pop_auth_apop = yes
    mail:imap:quota_full_tempfail = yes
    mail:imap:imap_urlauth_host = " "
    mail:imap:enable_imap = yes
    mail:imap:postmaster = "postmaster"
    mail:imap:enable_pop = yes
    mail:imap:partition-default = "/Library/Server/Mail/Data/mail"
    mail:imap:imap_auth_login = yes
    mail:imap:enable_sieve = yes
    mail:imap:imap_auth_cram_md5 = yes
    mail:imap:notification_server_enabled = yes
    mail:imap:tls_cert_file = "/etc/certificates/juffrouwjannie.vanderwerff.net.69F8227930804D0241A279CBC08AF DFBA687F300.cert.pem"

  • Odd Mail Server Setup Issues

    So after purchasing my new Xserve which i will be using as my company's primary mail server.
    i own a domain hosted by my ISP, and I have a static IP. I have also purchased a sonicwall pro 2040 firewall and have opened up the ports needed for the mail service smtp, pop, imap and web for webmail.
    I have already configured the MX and A settings with my ISP DNS server.
    i will be using an example.com as my domain.
    My current settings are,
    Computer Name : mail.example.com
    In Computer Services under Mail i have the following things checked off.
    General (the list below i have checked off)
    -> Enable Pop
    -> Enable SMTP
    -> Allow incoming mail
    domain :example.com
    hostname : mail.example.com
    Relay (the list below i have checked off)
    -> Accept SMTP relays only from these hosts and networks
    127.0.0.1/32
    my static ip
    my mail server local lan address
    -> Use these junk mail rejection servers
    zen.spamhaus.org
    Filters (the list below i have checked off)
    -> Scan email for Junk @ 5 junk score
    -> Scan email for virus and delete
    -> update the junk mail and virus 1 time a day
    Quotas
    -> Refuse incoming mail larger the 25MB
    Advanced
    Not sure what i should do here, my staff will be accessing email from all over north america and ideas i have played around a bit but nothing makes me able to set a mail client up to my server.
    Hosting -> local host and my domain.
    In my log files for mail access its also says empty option value on line 15 of the config file.
    Anyone have any ideas.

    You might also want to harden OSX.4 Tiger server against spam. I wrote an article which details implementing greylisting, blackholes, backscatter filtering, checking the sending mail server, recipient and email content. This supplements the anti-virus and spam checks already included in OSX Server to significantly reduce spam received and load on the mail server.
    Go http://happymac.info/node/10

  • Leopard Server Users Issue

    It seems that all the users I created during the install process of Leopard Server are just fine, but users I created AFTER the install was complete cannot receive mail. The users created after the install appear in the user list of the Workgroup Manager, but when I switch to Server Admin and look at the Mail Services::Maintenance::Database tab, the newly created users are not there. As in, the email portion of the account does not appear to get created. Anyone know how I can fix this?

    Yeah, I did enable all services in Workgroup Manager. And, part of the problem here is that they users cannot log in and mail sent to them is bounced back, full on daemon response. Using webmail to try and log in, these newly created users get an error message saying that the user is unknown or password is invalid. Since its me doing all the testing, I know it's not a typo or anything easy like that.

  • Why do I get an "unable to connect - There may be a problem with the mail server or network." message from iCloud.  I have verified the settings.  I can access my iCloud account online but can't send or receive e-mail via the mail account.

    Text limits to the "Question" link prevents a full explanation:
    This is a long-time problem.  I have tried to resolve it with Apple but their "Customer Support" is merely a name.
    I can go online and access my e-mail but when I try to send or receive e-mail via iCloud through my internet server (Google fiber now but the same situation existed with my prior service), I receive "There may be a problem with the mail server or network.  Verify the settings for 'Apple Email' and try again.
    "The server returned the error:  The server 'p0-imap.mail.me.com' refused to allow a connection on port 143."
    Well, I have verified the setting and tried again and again and …
    Well, you get the idea …

    JungleTaxi Cabbie wrote:
    Csound1: iCloud: Configuring Mail with Mac OS X v10.6 or iOS 4
    Enter your Incoming Mail Server, User Name, and Password using the following settings:
    Incoming Mail Server: mail.me.com
    User Name: Your iCloud email address (excluding @me.com)
    Password: Your password
    Last Modified: Jun 27, 2013
    Maybe you should test these things before calling people out, because these settings do function perfectly well.
    iCloud is not supported on Snow Leopard or lower, why bother to mention it?
    The OP has an iCloud account, and that can not be opened without Lion or Mountain Lion (on a Mac), IOS5 or 6 (on an iPhone/iPad)
    The document I linked to is Apples documentation for iCloud on current devices,I don't care whether you believe that you know better than they do, but it will affect the people who follow your advice as it won't work
    JungleTaxi Cabbie wrote:
    Also, if you're not running Lion or Mountain Lion, there is no "Mail, Contacts & Calendars" prefpane.
    I never said that there was, perhaps you imagined it.

  • Send E-Mail over two different Mail Server ?

    I successfully configured E-Mail in HTML DB according to the How-To "Send E-Mail from HTML DB Applications".
    There's one point in our environment that is a little bit special. The HTML DB application should work for two companies. So it works for company A because every message is sent to the corresponding Mail Server. Of course messages to company B are rejected because the Mail Server of company A is not configured to accept these messages ( relaying denied... ). Is this a Mail Server administration issue or is there a possibility to implement an if then else functionality for Mail Server in HTML DB ?
    Thanks Tobias

    htmldb_mail supports a single mail server per htmldb instance. if you want to call different mail servers, consider sending the emails via your own calls to utl_smtp. there's a pretty simple example of that code at...
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:1739411218448
    ...hope this helps,
    raj

  • Is it possible to let OS X Mail server POP and Sort

    Hi there!
    I'm a current Kerio Mail server user and the way it's set up is like this:
    All our mail gets delivered and spam-filtered at our hostingprovider's server, all mail drops into 1 big mailbox.
    Kerio pops this mailbox every so often and distributes the mail to the users that are managed in kerio.
    Is this setup possible with OS X Server mail services? We are receiving loads of spam and our connection acts up sometimes so this setup provides great availability.
    [edit]
    i guess fetchmail comes into play ... it is installed but not configured
    [/edit]
    Message was edited by: Zimmen

    A few missing pieces here...
    1. Are you using Kerio on your machine, or that is what your hosting provider is running? (I will assume the former).
    2. Does your hosting provider accept mail to AnyUser@yourdomain, or only to legitimat users at your site? If the former, it is no wonder you are getting hammered by spam. You will take anything. Your provider might be able to filter against an RBL list, but that probably only takes out about 70% of the spam on a good day.
    Anti-spam filtering takes place on the SMTP side of the server. Once the mail is delivered to your SP, you've got the mail and have to deal with it on the client side. Ugly at best. Fetchmail will not help you here.
    OS X mail does have a pretty good selection of anti-spam tools. Most notably, SpamAssassin and greylisting. But both (greylisting in particular) require your mail server be the only mail server for your domain for best results.
    Mail does not require particularly high availability. If your mail server is missing for a while, the sending site will try again later. Mail is very resilient to temporary failures. You could set up your SP as a backup MX host if you want, but I would submit that would increase your spam load when your server is down or missing (mail relay from a secondary host, short circuits the greylisting feature).
    I do not know Kerio myself, but for mail alone, the built in mail services in OS X (current version) are pretty good. But you are shooting yourself in the foot by having your SP collecting mail for you, especially if they will accept any user.

  • TS3899 How do I check to see if the problem resides on the server (e.g., the mail server is not responding) rather than assuming the issue is with my phone and devise setup?

    As of sometime after September 10, 2012, at 4:40PM, I have not been receiving any mail.  Not on my iPhone, iPad, iMac, or MacBookPro.  The trouble shooting help on Apple's web site is designed to help ensure my devise settings are accurate.  However, I moved from .Mac to .me and now to .cloud and have operating with no issues for several months on the iCloud.
    How can I check to see if my mail problem is really Apple's fault rather than double checking all my devise settings ad nausiam?  I feel there is a server issue with Apple because none of my devises can receive mail, however, I do not know how to validate my theory with Apple.  I get an error message telling me:
    Cannot Get Mail
    The connection to the server failed.
    Apple says there is a mail server problem affecting 1% of users.  However, am I one of the 1%?  If I assume I am, wait for the problem to be fixed, and then learn I was not one of the 1% and continue to have mail issues, then I will be more frustrated.

    I have the same problem since yesterday morning. I checked the systems status and still the same. I guess we are the 1.1% who has problem with their email.

  • Mac mail server issue?

    All of a sudden, from out of nowhere, my mac mail connection has gone dead. This is one of the error messages I receive:
    "The SMTP server “smtp.mac.com” rejected the password for user _____."
    I re-enter the correct password... then I get this:
    "There may be a problem with the mail server or network. Check the settings for account “________” or try again.
    The server error encountered was: The connection to the server “mail.mac.com” on port 143 timed out."
    Repeat process... on and on and on.
    Can anyone help?

    There are server issues with .Mac - incoming and outgoing mail servers.
    I copied this from under Support via webmail access for my .Mac account.
    +100% of members might experience slower than normal response when using IMAP mail. Mail can be sent and received using .Mac webmail. Normal service will be restored ASAP.+

  • Help with mail users and setup 10.6 mail server bound to 10.8 Open Directory

    We have a 10.7 Open Directory server which was upgraded from 10.6.  We have had some Open Directory issues since the upgrade.  I am manually creating a 10.8 server as a replacement for the 10.7 server.  All settings for services are running as expected and we are ready to turn over to the new server except for a problem with the ability to receive email.
    Setup in both the original and the replacement has the OD server with DNS running with a correct MX record pointing to our 10.6 mail server.
    In the replacement OD server the mail users were created as network users, with no userhome, with access to the mail service, and email addresses given. 
    The mail server was unbound from the original OD server, bound to the replacement OD server without SSL exactly as with the original, and restarted.
    Initially the mail service said that mail clients had the wrong name or password.  Opened WGM 10.6 on the MAIL server and checked the OD records.  They showed the mail users not having the checkbox saying they were set up to receive mail selected.  Selected the checkbox to receive mail.
    Now the mail client seems to connect to the server correctly but does not show the emails in the system for the users.  It is as though there is no email and the account is brand new.
    Unbind the mail server from the replacement OD server, rebind it to the original OD server, and restart.
    Mail clients connect and receive the mail in the accounts as expected.
    Any ideas?
    Thanks

    I figured out what the mail server is doing.  It has created new email stores for each of the new users.  If we bind to the original OD it uses the original set of email stores.  If we bind to the replacement OD it uses the new set of email stores.
    I have tried to make sure that the userIDs match in each OD but that did not help.
    The server is working for each OD.  Does anyone know if I can tell the 10.6 mail server to use the old emails in the mailstore for the new user in the new OD?
    If nothing else I can solve the problem by archiving the emails and copying them into the new user when running the new OD.

  • Mail server issues after upgrading

    Hello,
    After upgrading my iMac to Mountain Lion 3 of our 5 email account are not working.
    The 5 accounts are [email protected] However 3 of them are not able to come online.
    I tried MANY times to delete them and recreate them coming ALWAYS to the same issue.
    What I noticed is that the INCOMING mail is different from the incoming mail from the accounts that are working. (the accounts that are working use an incoming mail server: p05-imap.mail.me.com or p01-imap.mail.me.com) However the accounts in trouble only show a grey out "MAIL.EXAMPLE.COM" unable to switch it.
    The outcoming mail in those accounts is "ICLOUD - OFFLINE".
    Even if I tried to switch servers I get a notice " SERVERS MARKED WITH ALERT ICONS ARE IN CONFLICT AND CANNOT BE SAVED. TOW SERVERS CANNOT SHARE THE SAME ADDRESS AND AUTHENTICATION SETTINGS. TRY AGAIN".
    I get this notice even after deleting all the problem accounts.
    Also I tried switching ports like some people suggested on other posts and does not help either.
    The account are working perfectly on ipads, ipods and iphones.

    David,
    You are right, theer are some changes incorporated in the latest MLR # 16 on the configurations files and on the dehydration store metrics(such as performance, fields,..).
    However, I would not suggest to continue working on olite, even for Development/Test purposes as you might get stuck with strange errors...and the only solution would be to re-install SOA Suite if your olite gets corrupted. There might be ways to gets your olite back to position, but trust me..its not so simple.
    Also, when you develop and stress test all your testcase scenarios in an TEST Adv installation, its simple to mimic the same in actual production box, as you exactly know its behavior.
    So, go for a brand new SOA 10.1.3.4 MLR # 5 (or) 10.1.3.3.1 MLR # 16 SOA Suite Advanced installation with Oracle DB 10.2.0.3 as its dehydration store.
    Hope this helps!
    Cheers
    Anirudh Pucha

  • Mail server automatically cc all email for user to other acct but group...

    Back on April 2007, David_X answered this question:
    How to have the mail server automatically cc all e-mail for user to other accounts, (gmail, hotmail, etc). Here is the old post that explains that:
    http://discussions.apple.com/thread.jspa?messageID=4357149&#4357149
    What I did not catch at the time was if you setup a Group, one of three ways, the cc step no longer works. There is a fourth way but it is not practical. Creating local groups on individual Macs.
    *Group method 1 per David_X:*
    Use edited group files on the server.
    The following sends to members of groups but does not show all recipients in the received message...
    In /etc/postfix/aliases, add...
    groupname: :include:/path/to/groupname.txt
    In a file called groupname.txt (using plaintext editor)...
    [email protected]
    [email protected]
    Reload aliases...
    sudo newaliases
    sudo postalias aliases
    sudo postfix reload
    Mail sent to [email protected] gets passed to amavisd once, before then being relayed out for each individual recipient.
    *Group method 2 per David_X:*
    Make a user, e.g., "accounts"
    In mail settings, select 'Forward' option and enter the group members' email addresses, comma separated e.g.,
    [email protected],[email protected]
    This gets a bit 'long' for lots of members.
    The email then gets sent to each of the people in this list.
    *Group method 3 that I just discovered:*
    Create a group in Workgroup Manager.
    Drag the users you want in it.
    Save.
    Test sending to that group.
    Best part, the group name shows up in Address Book if you have LDAP setup.
    So I have setup all three. If I send an email to any type of group, they work.
    The problem:
    If one of those members in the group also has a BCC setup to Gmail or any other outside email, they never get the e-mail copied out to the external account.
    Example:
    I send an email to [email protected]. He gets the email there and also a copy at his Gmail account.
    If I send an email to the Sales group that jsmith belongs to, he gets the email there but nothing at the Gmail account.
    It looks like the mail server processes the "aliases" file and skips the "Recipient_bcc" file that handles the forwards.
    Is there a way to have my cake and eat it too? David_X your thoughts also?
    Thanks everyone!

    Bump.
    Short version. Sales guy has a Gmail account he wants his e-mail copied to also.
    Send e-mail directly to his Xserve account, he gets it there and it gets sent on to his Gmail account.
    Send an e-mail to the sales Group that he is a member of, he gets it there but it never gets sent out to the Gmail account.
    Ideas?

  • If I install the Mail server on a Mac Mini as a server, can my users utilize Outlook as their mail client and how will it be different for them?

    If I install the Mail server on a Mac Mini as a server, can my users utilize Outlook as their mail client and how will it be different for them?

    Your users can utilize Outlook no matter where your email is hosted at.
    how will it be different for them
    different from what?

Maybe you are looking for

  • Forms Generator in Designer - pro's & contra's ?

    Hi all Does somebody have a list of pro's and contra's concerning generation of Forms modules in Designer6i respectively 9i? Best regards Martin

  • Ise distributed deployment upgrade

    My customer has an ISE deployment with 4 nodes: Admin/Monitor Primary and Secondary plus 2 Policy Server. The Admin nodes are VMs, the Policy nodes are 3315 appliances. The system was installed almost three years ago with the version 1.1.0 ... It app

  • Current date should be populated when executing the hierachy variable.

    Hi bw Pro's I have a customer hi-erachy.For that hierachy i created a variable. The variable name is hieraachy date. the variable will be executed with  user entry/default value. the characteristic i used for thata variable is date. Now the requireme

  • Cannot call subVI without errors-- but fine as standard VI

    Hello all, I have a VI that works perfectly fine when run independently of anything else, but when called from another VI (which I rather need to do) it chokes, and I get a VISA command error (as in, it returns an error saying there's a problem with

  • Program stopped working

    When using bridge  ( new cc) it appears to be loading up thumbnails then a message appears on screen that the program has stopped working and to close program any ideas?