Roundcube Test Imap config failed

Been trying for hours to get webmail working, following ArchWiki.
Step 3 of Roundcube Installer errors out:
IMAP connect:  NOT OK(Login failed for [email protected] from xxx.44.40.194. Could not connect to ssl://localhost:993: Unknown reason)
/var/log/mail:
May 24 09:20:22 server dovecot[13280]: imap-login: Disconnected (disconnected before auth was ready, waited 0 secs): user=<>, rip=::1, lip=::1, TLS handshaking: SSL_accept() failed: error:14094418:SSL routines:ssl3_read_bytes:tlsv1 alert unknown ca: SSL alert number 48, session=<ryUjZ9AW1QAAAAAAAAAAAAAAAAAAAAAB>
Had exact same issue with SMTP test, but changed certificate from FQDN to localhost as work-around and added following to /etc/webapps/roundcubemail/config/config.inc.php:
$config['smtp_conn_options'] = array(
  'ssl'         => array(
         'verify_peer'  => false,
         'verfify_peer_name' => false,
After this, smtp test succeeded. Tried the same for imap (imap_conn_options), but no success. Dovecot is configured to use the same certs as smtp
Configs:
[tkh@domain ~]$ cat /etc/postfix/main.cf | egrep -v "(^#.*|^$)"
compatibility_level = 2
queue_directory = /var/spool/postfix
command_directory = /usr/bin
daemon_directory = /usr/lib/postfix/bin
data_directory = /var/lib/postfix
mail_owner = postfix
myhostname = domain.com
mydomain = domain.com
myorigin = $mydomain
mydestination = localhost
unknown_local_recipient_reject_code = 550
mynetworks_style = host
relay_domains = $mydestination
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
readme_directory = /usr/share/doc/postfix
inet_protocols = ipv4
meta_directory = /etc/postfix
shlib_directory = /usr/lib/postfix
virtual_alias_maps = proxy:mysql:/etc/postfix/virtual_alias_maps.cf
virtual_mailbox_domains = proxy:mysql:/etc/postfix/virtual_mailbox_domains.cf
virtual_mailbox_maps = proxy:mysql:/etc/postfix/virtual_mailbox_maps.cf
virtual_mailbox_base = /home/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
[tkh@domain ~]$ cat /etc/postfix/master.cf | egrep -v "(^#.*|^$)"
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
[tkh@domain ~]$ cat /etc/webapps/roundcubemail/config/config.inc.php | egrep -v "(^#.*|^$)"
<?php
/* Local configuration for Roundcube Webmail */
$config['db_dsnw'] = 'mysql://roundcube_user:sqlpass@localhost/roundcube_db';
$config['default_host'] = 'ssl://localhost';
$config['default_port'] = 993;
$config['imap_conn_options'] = array(
'ssl'         => array(
     'verify_peer'       => false,
     'verfify_peer_name' => false,
$config['smtp_server'] = 'tls://localhost';
$config['smtp_port'] = 587;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['smtp_conn_options'] = array(
  'ssl'         => array(
     'verify_peer'  => false,
     'verfify_peer_name' => false,
$config['smtp_port'] = 587;
$config['support_url'] = '';
$config['des_key'] = '24char key';
$config['username_domain'] = 'domain.com';
$config['product_name'] = 'domain Clothing - Webmail';
$config['mime_types'] = '/etc/webapps/roundcubemail/mime.types';
$config['plugins'] = array('archive', 'zipdownload');
$config['language'] = 'en_US';
$config['htmleditor'] = 1;
[tkh@domain ~]$ cat /etc/dovecot/dovecot.conf | egrep -v "(^#.*|^$)"
protocols = imap
auth_mechanisms = plain
passdb {
    driver = sql
    args = /etc/dovecot/dovecot-sql.conf
userdb {
    driver = sql
    args = /etc/dovecot/dovecot-sql.conf
service auth {
    unix_listener auth-client {
        group = postfix
        mode = 0660
        user = postfix
    user = root
mail_home = /home/vmail/%d/%u
mail_location = maildir:~
ssl_cert = </etc/ssl/private/server.crt
ssl_key = </etc/ssl/private/server.key
[tkh@domain ~]$
EDIT: I just set it all up on my phone (android with option 'accept all certificates') and I am able to send and receive e-mail, so it seems to be an issue with roundcube.
Last edited by etakeh32 (2015-05-26 01:41:28)

If roundcube and the mail server are on the same host, do you really need SSL?
http://trac.roundcube.net/wiki/Howto_Co … orIMAPSMTP

Similar Messages

  • SOLMAN_SETUP/ preparation phase 5.1 configure web dispatcher config failed.

    Hello
    Based on SAP Solution manager 7.1. SPS 11 Fresh install, SOLMAN_SETUP/ preparation phase 5.1 configure web dispatcher config failed.
    Error message:
    L3 - Failed to reach test WS through System Settings (ICM/HTTPURLLOC):
    http://vip.myfqdn.fr:80
    L2 - Test WS can be reached through ICM:
    http://hostname.myfqdn.fr:8000
    SOAP:1.023 SRT: Processing error in Internet Communication Framework: ("ICF Error when receiving the response: ICM_HTTP_CONNECTION_FAILED")
    Solman is located in a DMZ, http/https are configurated in table
    HTTPURLOC and load balancer  is used to publish http and https url and port redirection
    instead of native url « hostname » + default port (80xx / 443xx)
    • In DMZ for url
    http://hostname.myfqdn.fr:8000/ManagedSetupWS/Config1?style=document
    system answer is OK
    • In LAN via Load balancer url return KO message
    http://vip.myfqdn.fr:8000/ManagedSetupWS/Config1?style=document
    Any help will be appreciate.
    Regards
    Eric

    Hi All,
    I have resolved the issue with re-setting the password of SM_INTERN_WS & SM_EXTERN_WS.
    from step 1.
    with no-dispatcher configuration..
    Regrads,
    Gagandeep Singh

  • Connection test to database failed: could not connect to server

    I restarted one of my HPOV NNMi 9.23 servers this morning and NNMi is no longer loading.  I am seeing the following errors in the logs indicated:
    /var/opt/OV/log/nnm/public/nmsdbmgr.log
    04/06/2015 09:28:05 AM Connection test to database failed: could not connect to server: Connection refused
    Is the server running on host "127.0.0.1" and accepting
    TCP/IP connections on port 5432?
    /var/opt/OV/log/nnm/public/postgres.log
    2015-04-06 09:25:55.312 EDT: :8580:0LOG: could not translate host name "localhost", service "5432" to address: Name or service not known
    2015-04-06 09:25:55.312 EDT: :8580:0WARNING: could not create listen socket for "localhost"
    2015-04-06 09:25:55.312 EDT: :8580:0FATAL: could not create any TCP/IP sockets
    I checked /etc/hosts and found the following entry:
    #; Local
    127.0.0.1 localhost
    From the command line I can ping localhost with no issue.  Not sure why NNMi is not starting at this point. 
    This question was solved.
    View Solution.

    I also attempted to do a reset using nnmresetebdb.ovpl.  I recieved the following:
    Attempting to reset the embedded database...
    Starting nmsdbmgr process for database reset...
    nmsdbmgr process did not restart successfully - please try reset again.
    When I run ovstart -c I receive the following:
    Name PID State Last Message(s)
    OVsPMD 29831 RUNNING -
    pmd 29832 RUNNING Initialization complete.
    nmsdbmgr - NOT_RUNNING - Exit(1)
    ovjboss - UNSTARTABLE -
    nnmaction - UNSTARTABLE -
    ovspmd: Attempt to start HP OpenView services is complete.
    I definitely need some help with this please!  
    Thanks!

  • EM Alert: Critical:PROD.test.edu.au - Failed to connect to database instanc

    HI Experts,
    Today i got this alert from oem grid during RMAN bakcup of the PROD database.when i try to connect the database i am able to get into to the DB successfully with out any issues.
    But i am not sure why this error has come and resone behind that.Please advise.
    From: Oracle OEM [mailto:[email protected]]
    Sent: Tuesday, February 22, 2011 11:21 PM
    To: DBA_GROUP
    Subject: EM Alert: Critical:PROD.test.edu.au - Failed to connect to database instance: ORA-00257: archiver error. Connect internal only, until freed. (DBD ERROR: OCISessionBegin).
    Target Name=PROD.test.edu.au
    Target type=Database Instance
    Host=delhi.win.test.edu.au
    Occurred At=Feb 22, 2011 11:20:33 PM EST
    Message=Failed to connect to database instance: ORA-00257: archiver error. Connect internal only, until freed. (DBD ERROR: OCISessionBegin).
    Severity=Critical
    Acknowledged=No
    Notification Rule Name=Database Availability and Critical States
    Notification Rule Owner=SYSMAN
    when i check the alertlog file i could see the following
    Tue Feb 22 23:01:36 2011
    Starting control autobackup
    Control autobackup written to DISK device
    handle '/oracledb/rman_backup/PROD/control_c-197342269-20110222-01'
    Tue Feb 22 23:22:42 2011
    Errors in file /oracle/admin/PROD/udump/hubprd_ora_27069.trc:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01438: value larger than specified precision allowed for this column
    ORA-06512: at line 2
    PLease let me know the cause of the issues and solution to overcome this issues.
    Regards,
    Salai

    It would appear that your archive location is full. If it is full, then try to get some more free space there by either deleting the old archives or specifying a different location.
    I don't see any mention of a flash recovery area in the log message, but you may also want to confirm that you have reached your space allocated to the FRA.

  • Ocfs2 config failed! = Exception: Obsolete nodes found

    Hi,
    I try to add a new node to a POOL and it failed with this error
    ovs_operation.log:
    "2011-07-27 09:40:36" ERROR=> cluster_check_prerequisite: faild. => <Exception: ha_check_ocfs2_config
    failed:<Exception: check srv('ovm-rac-exp01') ocfs2 config failed! => <Exception: Obsolete nodes found: >
    What is the problem ?
    My host file and cluster.conf seem to be correct!
    Thanks

    Ok finaly my problem was with host file !
    I have removed 127.0.0.1 localhost.localdomain localhost from my host file and now I'm able to add a new node.
    hope this can help someone

  • Test Script execution failed.

    I'm getting the Test Script Execution Error - "Test Script execution failed. Reason: The system cannot find the file specifiied"
    This is happening to all my test script files. I can load the test script files, edit the test cases, etc, but cannot execute the test scripts
    If I click on View Test Script Specification, they all come up, and the report shows all the cases in the test script.
    If I look into the directory, they are all there, with the .tsc extension and a file type of TSC
    I created a new TSC this morning, but with the same results
    They were working yesterday. Since then, I did rename one of the test scripts, and changed my build platform from .NET to Java.
    Any thoughts?
    Thanks,
    Allan Gibson
    P.S. I also now note the my what-if analysis files do not run, and are getting a message: run time error '-2146233088 (80131500)': Batch process has failed. Reason: the system cannot find the file specified (OPA-E00241). When I press the debug button, I'm taken to a screen where the line "Call GetExcelCompilerProxy() .Analyze(ActiveWorkbood)" is highlighted in yellow.
    Edited by: A Gibson on 11-Sep-2012 9:02 AM
    Edited by: A Gibson on 11-Sep-2012 9:09 AM

    Hey Allan,
    It looks like it either can't find the Java component it needs to run or the test script for some reason. If you look in the bin directory of the OPM install (which is normally something like c:\program files\Oracle\Policy Modeling\bin) do you see a file called determinations-remote-clr.jar? If not it sounds like something's gone wrong with your install.
    If so, can you run the test script in the standalone debugger? Also, if you look at the absolute path of your test script file, does it contain any non-ascii characters? If so, try removing those characters and see if it works.
    Thanks,
    Kristy

  • CLI103 Command 'deploy-config' failed

    We are using Sun Java System Web Server 7.0U1 and after removing server certificates from the server I get following error after trying to deploy one certain configuration:
    wadm> deploy-config config_name
    CLI103 Command 'deploy-config' failed. :: nullAny ideas what might be wrong? In web GUI (Admin Console) there's text saying "Deployment Pending" and delpoying from Admin console fails also.
    -Joel-

    I removed it from Administration GUI (Configurations > config_name > Certificates > Delete...).
    I managed to do the deployment by making empty change and saving /[install_path]/https-config_name/config/server.xml again and deploying configurations from the node.
    At the moment the problem is gone but if I get it again I'll post logs in FINE mode here.
    Thanks for the help!
    -Joel-

  • IPM and config failed status for ICMP jitter collectors.

    Hello at all.
    We are using IPM 4.2 to configure the collectors on a 7201. We made an upgrade to software 15.0 to solve bug CSCte85239. Then to make the Admin Tag more readable, we have exported all collectors, edited, and then imported. For all ICMP jitter collectors we have received a config failed status. Config failed when we try to add collector using GUI. We are able to manually configure collector. We have already deleted and added the device from IPM.
    Any ideas?
    Thanks.
    Regards.
    Andrea

    Router sends an inconsistent value error into get-response message: error should be in the PktDataRequestSize.
    This variabile cannot be modified using GUI.
    Any ideas?
    Regards.
    Andrea

  • Connection to the imap server failed on WiFi

    Hi -
    Has anyone encountered this problem? All of a sudden, I am getting the following error message on my iPhone when I try to check my email (and am connected to my WiFi network): "Connection to the imap server failed." If I turn off WiFi, the connection works fine (using 3G). All settings are correct, and this has worked fine for almost a year before the problem started.
    Any help on this would be appreciated. Thanks.
    Rob

    If you truly tried everything there is no hope of ever making it work. But perhaps you missed something, so here are a few things (and if you've tried them...)
    Reboot the phone by holding the HOME and SLEEP buttons at the same time until an Apple logo appears
    Go to Settings/Mail,contacts,calendars, tap on a mail account. Make sure there's an entry for SMTP or Outgoing mail server (You may need to tap on Account to see the entry)
    Tap on SMTP and make sure you have entered your email name and password (even if it says "optional")
    If there's more than one server listed make sure the appropriate one for that account is the primary
    If all of the above is correct delete the account, reboot the phone, and add the account back

  • GMS 2.1 installed Xen, reboot and get Engine Config Failed

    We have Gms 2.1 installed on Xen Virtual machine, works on initial install, but when we reboot get "Engine Config Failed"

    SLES 11 SP3, 4 gig of ram, 150 gig of hard space.. Restart does nothing, same error... this the configengine.log
    2015-04-21 15:29:28.937 INFO [MainThread] [odbc:211] [userID:] [eventID:] [objectID:] [] Connecting to database at UID=datasync_user;DATABASE=datasync;DRIVER={DataSy nc_postgresql};SERVER=localhost;PWD=*****;PORT=543 2;READONLY=no
    2015-04-21 15:29:28.976 INFO [MainThread] [odbc:269] [userID:] [eventID:] [objectID:] [] System ODBC version 03.52, using driver: psqlodbcw.so version 09.03.0300 (supports ODBC 03.51)
    2015-04-21 15:29:28.976 INFO [MainThread] [__init__:101] [userID:] [eventID:] [objectID:] [] Connected to database...
    2015-04-21 15:29:29.003 INFO [MainThread] [__init__:114] [userID:] [eventID:] [objectID:] [] Confige Engine initialization complete
    2015-04-21 15:29:29.003 INFO [MainThread] [configEngine:46] [userID:] [eventID:] [objectID:] [] Starting ConfigEngine...
    2015-04-21 15:29:29.004 INFO [MainThread] [__init__:44] [userID:] [eventID:] [objectID:] [] ConfigEngine starting
    2015-04-21 15:29:29.013 INFO [MainThread] [odbc:269] [userID:] [eventID:] [objectID:] [] System ODBC version 03.52, using driver: psqlodbcw.so version 09.03.0300 (supports ODBC 03.51)
    2015-04-21 15:29:29.013 INFO [MainThread] [__init__:101] [userID:] [eventID:] [objectID:] [] Connected to database...
    2015-04-21 15:29:29.032 INFO [MainThread] [__init__:114] [userID:] [eventID:] [objectID:] [] Confige Engine initialization complete
    2015-04-21 15:29:29.032 INFO [MainThread] [configEngine:46] [userID:] [eventID:] [objectID:] [] Starting ConfigEngine...
    2015-04-21 15:29:29.032 INFO [MainThread] [__init__:44] [userID:] [eventID:] [objectID:] [] ConfigEngine starting
    2015-04-21 15:29:29.036 ERROR [MainThread] [util:255] [userID:] [eventID:] [objectID:] [] EXCEPTION: ********************
    2015-04-21 15:29:29.036 ERROR [MainThread] [util:258] [userID:] [eventID:] [objectID:] [] EXCEPTION: Traceback (most recent call last):
    2015-04-21 15:29:29.036 ERROR [MainThread] [util:258] [userID:] [eventID:] [objectID:] [] EXCEPTION: File "configengine/sbin/configEngine.py", line 59, in <module>
    2015-04-21 15:29:29.036 ERROR [MainThread] [util:258] [userID:] [eventID:] [objectID:] [] EXCEPTION: File "configengine/lib/configengine/__init__.py", line 50, in start
    2015-04-21 15:29:29.037 ERROR [MainThread] [util:258] [userID:] [eventID:] [objectID:] [] EXCEPTION: File "/opt/novell/datasynchttps://www.novell.com/common/lib/cherrypy/wsgiserver/__init__.py", line 1597, in start
    2015-04-21 15:29:29.037 ERROR [MainThread] [util:258] [userID:] [eventID:] [objectID:] [] EXCEPTION: raise socket.error, msg
    2015-04-21 15:29:29.037 ERROR [MainThread] [util:258] [userID:] [eventID:] [objectID:] [] EXCEPTION: error: [Errno 98] Address already in use
    2015-04-21 15:29:29.037 ERROR [MainThread] [util:259] [userID:] [eventID:] [objectID:] [] EXCEPTION: ********************
    2015-04-21 15:29:29.939 WARNING [LDAPPoll_thread] [directory:163] [userID:] [eventID:] [objectID:] [] Engine default not available.
    2015-04-21 15:29:41.652 INFO [CP WSGIServer Thread-10] [__init__:1771] [userID:] [eventID:] [objectID:] [] Engine default registered with configengine.
    2015-04-21 15:29:43.079 INFO [LDAPPoll_thread] [directory:169] [userID:] [eventID:] [objectID:] [] Polling user crobison.gwpoa.gwdom...
    2015-04-21 15:29:43.087 INFO [LDAPPoll_thread] [directory:169] [userID:] [eventID:] [objectID:] [] Polling user hsifontes.gwpoa.gwdom...
    2015-04-21 15:29:43.089 INFO [LDAPPoll_thread] [directory:169] [userID:] [eventID:] [objectID:] [] Polling user wrodriguez.gwpoa.gwdom...
    2015-04-21 15:30:02.364 INFO [TargetsCleanup_Thread] [syncengine:242] [userID:] [eventID:] [objectID:] [] Targets cleanup finished ...
    2015-04-21 15:38:55.353 INFO [CP WSGIServer Thread-11] [gw_driver:185] [userID:] [eventID:] [objectID:] [] Failed user all attempts failed: root, code=53505, description=User not on post office
    2015-04-21 15:38:55.361 INFO [CP WSGIServer Thread-11] [__init__:1639] [userID:] [eventID:] [objectID:] [] Logged in as system user: Successful

  • Trying to connect to iCloud imap account failed?

    why when i try to connect to icloud imap account failed?

    What type of Mac. and which version of OS X are you using.

  • Uccx 8.0 email IMAP config

    Hi all, Does anyone have a screen shot of their IMAP config within the global settings in UCCX please, I just can't get it to accept the IMAP config but we can't figure out what's wrong but all looks OK.
    Thanks

    We have:
    IMAP Host:
    Port: 143
    Username: [email protected]
    Password:
    SMTP Host:
    Port: 25
    Username: [email protected]
    Password:
    I believe what caught us up at first was IMAP was configured to require a secure connection. Try adjusting the Exchange IMAP properties to make it work non-secure first.

  • FULL Test hardware scan FAILED.

    FULL Test hardware scan FAILED. Does anyone know what this means? Failed Error code WPE01-ZLKAnd how to fix it? STUCK in Chiang Mai, Thailand. I WANT someone who speaks English IF there is a repair place. BIG problem? small problem? I don't know. Thanks.

    Good day.
    Could you provide a bit more information about your system?
    Model, OS version, any hardware modifications, might prove helpful to members providing advice.
    Regards.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • Event test "Archive Full (%)" failed: ora-28009:

    Trying to create an event that will send an email with OEM but Im getting this message
    Event test "Archive Full (%)" failed: ora-28009: connection to sys should be as sysdba or sysoper in the event viewer.
    Im not sure what this refers to though - to connect to Management Server it has to be sysman user. What "connection" is this referring to ???
    Oracle 9.2.0.5.0 (due to migrate to 10g at years end hurrah!)
    Windows XP (now, but AIX once in production)

    OK thanks for that. I went ahead and did this:
    Configuration
    Manage Administrators
    Selected SYSMAN
    Preferred Credentials
    Selected target database and erased everything from the Database Credentials fields (where previously we had SYS/AS SYSDBA etc. )
    I am getting the same darn error as before.
    Anyway, the OEM help for this screen says
    Role Select the role from the pull-down list. You need to login with the SYSDBA or SYSOPER role to start up or shut down a database.
    Still stuck on this. I dont properly understand the error itself - it is telling me that the connection to sys should be as sysdba - and I am connecting as sysdba. ... . not sure what else I can do apart from try and write a script and forget this altogether.
    Thanks
    DA
    Also, in the Event Viewer, according the documentation, there is an "advice" tab. I see no such tab. :(
    When I try to create an event without any information supplied to the fields for SYSMAN Preferred Credentials, I get this in Event Viewer:
    "Failed - ora-0:normal , successful completion."
    Now I am really confused - a "failed, normal completion" ??
    Message was edited by:
    Dan A
    Message was edited by:
    Dan A

  • [SOLVED]Dovecot error when roundcube tries to test IMAP

    I am trying to get a virtual user mail server up and running. I have VM setup to be just a mail server. I have a couple things not working but Ill start with trying to resolve this error first.
    error with journalctl -b -u dovecot
    Aug 13 19:22:46 hermes dovecot[574]: master: Dovecot v2.2.13 starting up for imap, sieve (core dumps disabled)
    Aug 13 19:23:58 hermes dovecot[577]: imap-login: Fatal: Can't load private ssl_key: Key is for a different cert than ssl_cert
    Aug 13 19:23:58 hermes dovecot[574]: master: Error: service(imap-login): command startup failed, throttling for 2 secs
    Aug 13 19:24:07 hermes dovecot[577]: imap-login: Fatal: Can't load private ssl_key: Key is for a different cert than ssl_cert
    Aug 13 19:24:07 hermes dovecot[574]: master: Error: service(imap-login): command startup failed, throttling for 4 secs
    I tried deleting the dovecot.pem files and recreating the ssl cert and that did not change the error.
    dovecot.conf
    protocols = imap sieve
    ssl = yes
    ssl_cert = </etc/ssl/certs/server.crt
    ssl_key = </etc/ssl/private/server.key
    first_valid_uid = 5000
    first_valid_gid = 5000
    mail_home = /home/vmail/%d/%u
    mail_location = maildir:~
    auth_mechanisms = plain login cram-md5
    auth_username_chars = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@
    service auth {
    unix_listener auth-client {
    group = postfix
    mode = 0660
    user = postfix
    user = root
    protocol imap {
    imap_client_workarounds = delay-newmail tb-extra-mailbox-sep
    protocol lda {
    postmaster_address = [email protected]
    hostname = example.com
    sendmail_path = /usr/sbin/sendmail
    mail_plugins = sieve
    log_path = /var/log/dovecot-lda-errors.log
    info_log_path = /var/log/dovecot-lda.log
    service managesieve-login {
    inet_listener sieve {
    port = 4190
    service managesieve {
    protocol sieve {
    # Defaults are OK, so nothing in this section.
    plugin {
    sieve = ~/.dovecot.sieve
    sieve_global_path = /home/vmail/sieve.sieverc
    sieve_dir = ~/
    passdb {
    driver = sql
    args = /etc/dovecot/dovecot-sql.conf
    userdb {
    driver = sql
    args = /etc/dovecot/dovecot-sql.conf
    dovecot-sql.conf
    driver = mysql
    connect = host=localhost dbname=postfix_db user=user password=password
    default_pass_scheme = MD5-CRYPT
    user_query = SELECT '/home/vmail/%d/%u' as home, 'maildir:/home/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, '/home/vmail/%d/%u' as userdb_home, 'maildir:/home/vmail/%d/%u' as userdb_mail, 5000 as userdb_uid, 5000 as userdb_gid FROM mailbox WHERE username = '%u' AND active = '1'
    Thank you to anyone who takes the time to read and especially anyone who takes the time to reply.
    Last edited by ScottMB (2014-08-15 11:42:56)

    fixed. I was pointing to the incorrect ssl_cert.

Maybe you are looking for

  • After recent update to my macbook pro itunes will not open, it just bounces when I click on it

    fter recent update to my macbook pro itunes will not open, it just bounces when I click on it

  • ITunes error message? windows vista..

    i've never had any problems with my iPod and iTunes...but now for some reason whenever I plug my iPod in it won't sync to iTunes and this error message comes up: "iTunes could not connect to the iPhone "iPod" because of an unknown error (0xE800006B)"

  • How To Clear Mapviewer Tile Cache

    I am running a standalone version of Mapviewer using Weblogic Server. Weblogic and Mapviewer are running on a linux server with CentOS 5.8 64bit. - MapViewer Version: Ver11_1_1_7_1_B130516 - Weblogic Server 10.3.6 I am using Mapbuilder installed on a

  • Oracle.sql.BLOB as array

    Hi, I have a database table(say MY_BLOB_TABLE.) having one blob column I want to send each blob column as an attachment to a single email i.e. I for a particular case if I have 10 qualifying rows in MY_BLOB_TABLE,I want to send all these 10 blobs as

  • Streamclip/easy setup settings for purchased clips

    I have some purchased clips that I would like to edit in FCE. The settings from the QT inspector are: Format: photo JPEG, 1920 x 1080, millions FPS: 30 Data Size: 321.4 MB Data Rate: 171.37 Mbit/s Current Size: 478 x 269 pixels If I convert in stream