Virtual Mail Setup - imapd-ssl error unknown protocol

Hi,
I have been relentlessly trying to setup my first email server and I think that I am almost there. I have been following the guide at:
https://wiki.archlinux.org/index.php/Simple_Virtual_User_Mail_System
I have followed it step by step and I'm 99% sure that I didn't miss a thing when setting it up.
However, I cannot login to my roundcube mail. It just times out.
This is the error that pops up in /var/log/mail.log:
mail imapd-ssl: couriertls: accept: error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol
this is the contents of /etc/authlib/authmysqlrc:
##VERSION: $Id: authmysqlrc,v 1.20 2007/10/07 02:50:45 mrsam Exp $
# Copyright 2000-2007 Double Precision, Inc. See COPYING for
# distribution information.
# Do not alter lines that begin with ##, they are used when upgrading
# this configuration.
# authmysqlrc created from authmysqlrc.dist by sysconftool
# DO NOT INSTALL THIS FILE with world read permissions. This file
# might contain the MySQL admin password!
# Each line in this file must follow the following format:
# field[spaces|tabs]value
# That is, the name of the field, followed by spaces or tabs, followed by
# field value. Trailing spaces are prohibited.
##NAME: LOCATION:0
# The server name, userid, and password used to log in.
MYSQL_SERVER localhost
MYSQL_USERNAME postfix_user
MYSQL_PASSWORD *******MY PASSWORD*******
##NAME: SSLINFO:0
# The SSL information.
# To use SSL-encrypted connections, define the following variables (available
# in MySQL 4.0, or higher):
# MYSQL_SSL_KEY /path/to/file
# MYSQL_SSL_CERT /path/to/file
# MYSQL_SSL_CACERT /path/to/file
# MYSQL_SSL_CAPATH /path/to/file
# MYSQL_SSL_CIPHERS ALL:!DES
##NAME: MYSQL_SOCKET:0
# MYSQL_SOCKET can be used with MySQL version 3.22 or later, it specifies the
# filesystem pipe used for the connection
# MYSQL_SOCKET /var/mysql/mysql.sock
##NAME: MYSQL_PORT:0
# MYSQL_PORT can be used with MySQL version 3.22 or later to specify a port to
# connect to.
MYSQL_PORT 3306
##NAME: MYSQL_OPT:0
# Leave MYSQL_OPT as 0, unless you know what you're doing.
MYSQL_OPT 0
##NAME: MYSQL_DATABASE:0
# The name of the MySQL database we will open:
MYSQL_DATABASE postfix_db
#NAME: MYSQL_CHARACTER_SET:0
# This is optional. MYSQL_CHARACTER_SET installs a character set. This option
# can be used with MySQL version 4.1 or later. MySQL supports 70+ collations
# for 30+ character sets. See MySQL documentations for more detalis.
# MYSQL_CHARACTER_SET latin1
##NAME: MYSQL_USER_TABLE:0
# The name of the table containing your user data. See README.authmysqlrc
# for the required fields in this table.
MYSQL_USER_TABLE mailbox
##NAME: MYSQL_CRYPT_PWFIELD:0
# Either MYSQL_CRYPT_PWFIELD or MYSQL_CLEAR_PWFIELD must be defined. Both
# are OK too. crypted passwords go into MYSQL_CRYPT_PWFIELD, cleartext
# passwords go into MYSQL_CLEAR_PWFIELD. Cleartext passwords allow
# CRAM-MD5 authentication to be implemented.
MYSQL_CRYPT_PWFIELD password
##NAME: MYSQL_CLEAR_PWFIELD:0
# MYSQL_CLEAR_PWFIELD clear
##NAME: MYSQL_DEFAULT_DOMAIN:0
# If DEFAULT_DOMAIN is defined, and someone tries to log in as 'user',
# we will look up 'user@DEFAULT_DOMAIN' instead.
# DEFAULT_DOMAIN example.com
##NAME: MYSQL_UID_FIELD:0
# Other fields in the mysql table:
# MYSQL_UID_FIELD - contains the numerical userid of the account
MYSQL_UID_FIELD 5000
##NAME: MYSQL_GID_FIELD:0
# Numerical groupid of the account
MYSQL_GID_FIELD 5000
##NAME: MYSQL_LOGIN_FIELD:0
# The login id, default is id. Basically the query is:
# SELECT MYSQL_UID_FIELD, MYSQL_GID_FIELD, ... WHERE id='loginid'
MYSQL_LOGIN_FIELD username
##NAME: MYSQL_HOME_FIELD:0
MYSQL_HOME_FIELD "/home/vmail"
##NAME: MYSQL_NAME_FIELD:0
# The user's name (optional)
MYSQL_NAME_FIELD name
##NAME: MYSQL_MAILDIR_FIELD:0
# This is an optional field, and can be used to specify an arbitrary
# location of the maildir for the account, which normally defaults to
# $HOME/Maildir (where $HOME is read from MYSQL_HOME_FIELD).
# You still need to provide a MYSQL_HOME_FIELD, even if you uncomment this
# out.
MYSQL_MAILDIR_FIELD maildir
##NAME: MYSQL_DEFAULTDELIVERY:0
# Courier mail server only: optional field specifies custom mail delivery
# instructions for this account (if defined) -- essentially overrides
# DEFAULTDELIVERY from ${sysconfdir}/courierd
# MYSQL_DEFAULTDELIVERY defaultdelivery
##NAME: MYSQL_QUOTA_FIELD:0
# Define MYSQL_QUOTA_FIELD to be the name of the field that can optionally
# specify a maildir quota. See README.maildirquota for more information
MYSQL_QUOTA_FIELD quota
##NAME: MYSQL_AUXOPTIONS:0
# Auxiliary options. The MYSQL_AUXOPTIONS field should be a char field that
# contains a single string consisting of comma-separated "ATTRIBUTE=NAME"
# pairs. These names are additional attributes that define various per-account
# "options", as given in INSTALL's description of the "Account OPTIONS"
# setting.
# MYSQL_AUXOPTIONS_FIELD auxoptions
# You might want to try something like this, if you'd like to use a bunch
# of individual fields, instead of a single text blob:
# MYSQL_AUXOPTIONS_FIELD CONCAT("disableimap=",disableimap,",disablepop3=",disablepop3,",disablewebmail=",disablewebmail,",sharedgroup=",sharedgroup)
# This will let you define fields called "disableimap", etc, with the end result
# being something that the OPTIONS parser understands.
##NAME: MYSQL_WHERE_CLAUSE:0
# This is optional, MYSQL_WHERE_CLAUSE can be basically set to an arbitrary
# fixed string that is appended to the WHERE clause of our query
# MYSQL_WHERE_CLAUSE server='mailhost.example.com'
##NAME: MYSQL_SELECT_CLAUSE:0
# (EXPERIMENTAL)
# This is optional, MYSQL_SELECT_CLAUSE can be set when you have a database,
# which is structuraly different from proposed. The fixed string will
# be used to do a SELECT operation on database, which should return fields
# in order specified bellow:
# username, cryptpw, clearpw, uid, gid, home, maildir, quota, fullname, options
# The username field should include the domain (see example below).
# Enabling this option causes ignorance of any other field-related
# options, excluding default domain.
# There are two variables, which you can use. Substitution will be made
# for them, so you can put entered username (local part) and domain name
# in the right place of your query. These variables are:
# $(local_part), $(domain), $(service)
# If a $(domain) is empty (not given by the remote user) the default domain
# name is used in its place.
# $(service) will expand out to the service being authenticated: imap, imaps,
# pop3 or pop3s. Courier mail server only: service will also expand out to
# "courier", when searching for local mail account's location. In this case,
# if the "maildir" field is not empty it will be used in place of
# DEFAULTDELIVERY. Courier mail server will also use esmtp when doing
# authenticated ESMTP.
# This example is a little bit modified adaptation of vmail-sql
# database scheme:
# MYSQL_SELECT_CLAUSE SELECT CONCAT(popbox.local_part, '@', popbox.domain_name), \
# CONCAT('{MD5}', popbox.password_hash), \
# popbox.clearpw, \
# domain.uid, \
# domain.gid, \
# CONCAT(domain.path, '/', popbox.mbox_name), \
# domain.quota, \
# CONCAT("disableimap=",disableimap,",disablepop3=", \
# disablepop3,",disablewebmail=",disablewebmail, \
# ",sharedgroup=",sharedgroup) \
# FROM popbox, domain \
# WHERE popbox.local_part = '$(local_part)' \
# AND popbox.domain_name = '$(domain)' \
# AND popbox.domain_name = domain.domain_name
##NAME: MYSQL_ENUMERATE_CLAUSE:1
# {EXPERIMENTAL}
# Optional custom SQL query used to enumerate accounts for authenumerate,
# in order to compile a list of accounts for shared folders. The query
# should return the following fields: name, uid, gid, homedir, maildir, options
# Example:
# MYSQL_ENUMERATE_CLAUSE SELECT CONCAT(popbox.local_part, '@', popbox.domain_name), \
# domain.uid, \
# domain.gid, \
# CONCAT(domain.path, '/', popbox.mbox_name), \
# CONCAT('sharedgroup=', sharedgroup) \
# FROM popbox, domain \
# WHERE popbox.local_part = '$(local_part)' \
# AND popbox.domain_name = '$(domain)' \
# AND popbox.domain_name = domain.domain_name
##NAME: MYSQL_CHPASS_CLAUSE:0
# (EXPERIMENTAL)
# This is optional, MYSQL_CHPASS_CLAUSE can be set when you have a database,
# which is structuraly different from proposed. The fixed string will
# be used to do an UPDATE operation on database. In other words, it is
# used, when changing password.
# There are four variables, which you can use. Substitution will be made
# for them, so you can put entered username (local part) and domain name
# in the right place of your query. There variables are:
# $(local_part) , $(domain) , $(newpass) , $(newpass_crypt)
# If a $(domain) is empty (not given by the remote user) the default domain
# name is used in its place.
# $(newpass) contains plain password
# $(newpass_crypt) contains its crypted form
# MYSQL_CHPASS_CLAUSE UPDATE popbox \
# SET clearpw='$(newpass)', \
# password_hash='$(newpass_crypt)' \
# WHERE local_part='$(local_part)' \
# AND domain_name='$(domain)'
I have been reading around about that error to no avail.
i have extension=openssl.so uncommented in /etc/php/php.ini and round cube says my openssl is fine.
Any help would be much appreciated!
kush
Last edited by kush (2012-01-05 16:49:18)

Hey Kush I am having the same issue, did you ever get it working???

Similar Messages

  • Web.show_document gives FRM-92020 error unknown protocol

    Hi I am hoping someone can help.
    I am using web.show_document in forms 10g and get an FRM-92020 unknown protocol error. The URL I am passing starts fddl:// this is a legitimate call to an Electronic Document management system image search engine. The URL works 100% outside of Forms, i.e cut and paste into an internet Explorer address bar. The problem is with web.show_document parsing for 'known' protocols.
    Is there any way I can stop this validation from taking place. Incidentally I can HOST out and call iexplore with the URL and again that works (client Server), however we do not have webutil installed for me to do the webutil equivalent in our live environment!
    Any help will be great, thanks in advance.
    Trev.

    Hi Francois,
    thanks for replying.
    Yes I am using '_blank' as the second parameter.
    The URL I am passing is dynamically genreated and held in a variable. My call is:
    web.show_document(l_url,'_blank');
    the url evaluates to something like below:
    l_url := 'fddl://fmhsqlserv/filedirector/...........................'
    I am struggling to find any documentation on web.show_document that will help with this scenario. It is frustrating as the url is 100% OK, its just the evaluation of it by the function call.
    Any help or ideas are welcome.
    Trev

  • ECXpert3.5- How to setup HTTP-SSL for xml protocol

    Hi,
    We are using ECXpert3.5 on Solaris box. One of our Trading Partner want to communicate through HTTP-SSL and we are doing XML/EDI mapping. Could you guide us what steps we need to take care to implement this.
    How the external system will talk to ECXpert for transferring files.(We need the syntax for the URL). Could you suggest how to setup the HTTP SSL for XML protocol to receive xml files from remote system.
    Thanks in advance for your help!
    Regards,
    Ravi.

    Hi,
    We are using ECXpert3.5 on Solaris box. One of our Trading Partner want to communicate through HTTP-SSL and we are doing XML/EDI mapping. Could you guide us what steps we need to take care to implement this.
    How the external system will talk to ECXpert for transferring files.(We need the syntax for the URL). Could you suggest how to setup the HTTP SSL for XML protocol to receive xml files from remote system.
    Thanks in advance for your help!
    Regards,
    Ravi.

  • Java error: unknown protocol: socket

    Did a full-system upgrade over Yaourt and it updated ~100 packages, and now my Java is semi-broken.
    After the upgrade, I tried launching a usual .jnlp file that has worked flawlessly in the past, and now I get:
    java.net.MalformedURLException: unknown protocol: socket
    I have tried completely removing JDK and JRE and reinstalling them, and the error still shows up.  Any ideas?

    Fixed
    Last edited by corruptz0r (2011-07-06 02:32:39)

  • Mail Setup Problem - Postfix error for username

    I set up some users with a structured userid of say xxxxx001 etc. For the email id I user their names separated by an underscore eg [email protected] I get my mail clients to logon to our server's IMAP service using the xxxx001 type of id with MD5 security and IMAP works fine. I also get them to logon to SMTP with the same id and security protocol but keep getting a postfix error: od[getpwnam_ext] no record for user fred_bloggs. As a test I setup a dummy user with the network id and first part of email address the same and that works fine. Could someone enighten me as to what is happening please? Is it the case that if I have a different network id and first part of email address that I need to add an alias, I ask because that seems to work aswell, however, it does seem odd that such action would be rquired. Any help gratefully received.

    Did you sign up for a .Mac trial account which is provided with each new Mac purchase and is good for 60 days or do you already have a .Mac paid account?
    If not, you cannot create and access a .Mac account.
    .Mac is the right account type if you have a .Mac account. With the Mail application your can create/access a .Mac account as a .Mac type account (which is really an IMAP account and behaves in the same way), IMAP or POP and you can create a .Mac account as an IMAP or POP account with other email clients on your Mac or on a Windows PC.
    I access my .Mac account as a .Mac type with Mail on my Mac and as an IMAP account with Outlook Express on my Windows PC at work. This way, I can keep all server stored mailboxes synchronized with both email clients.

  • When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until

    When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until yesterday.  HELP!

    The specific text of the error message is very important here — I'm not sure exactly you're encountering here.
    If you're able to connect to your email server and are able send email to other email addresses and if the failures are specific to one email recipient address, then please contact the intended recipient of the failing email, and confirm their address is valid.  (This is the way I'm reading your question.)
    If you are unable to send any email to any other email addresses and this is specific to your email address, then try the web mail client interface (if one is available) to verify your login user and password, and check with your email ISP for assistance.  If your email password works via web mail, follow this Apple troubleshooting guide, then — if everything else fails — I'd probably then entirely remove the email account from Mail.app and re-add it per your email ISP's particular setup requirements.  (Some issue with the setup or maybe a corrupt setting in OS X or a problem at the mail ISP servers is a common problem, but this effects attempts to send to all email addresses via that account.)
    An email account setup is specific to an email provider, unfortunately.   If you're using one of the more common email ISPs, then there are usually setup guides and frequently-asked questions posted online.

  • SSL Error when connecting to the mail server

    Hi,
         i started having a wiered SSL error for some of my users on the mail servers when they connect using their mac machines to the mail server telling its the wrong username and password, but the same username and password works from the hand held devices including ipads and iphones. I checked the syslog and the maillog which is showing no errors regarding this. Althou i started getting this error com.apple.launchd[1] (org.dovecot.fts.update): Throttling respawn: Will start in 10 second for the past 1 week. i am using 10.9.1 Maverics. I can provide all the logs of the server if needed.

    Make sure you are using right security protocol, for IMAP you need to enable TLS/SSL. Go to email settings> Incoming mail > Security.
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

  • Outlook 2013 Mail Setup Add Account crashes with Rundll32 error and will not connect to Exchange in Windows 8.1

    I got a new Acer laptop with Windows 8.1 over 3 weeks ago, and installed Office Professional Plus 2013.  I have an Office365 E1 subscription, but this Office 2013 is not associated with the subscription.
    When I go to setup any email account using the automatic mode (primary will be Exchange Online with my 365 account, but I've tested POP email accounts with the same result), the Mail Setup crashes once the email address and password is entered and Next is
    pressed.  This error message is displayed:
    "Windows host process (Rundll32) has stopped working
    A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available."
    The step displayed as in process when the crash occurs is the "Searching for [email address] settings".  The first step "Establishing network connection" is checked complete.
    I've run an Office Repair, and there's no change.  I've run a clean boot, and even uninstalled/reinstalled with the same error still appearing.
    If I use the manual setup mode and input the server outlook.office365.com, both the Check Name function and the Next button result in the error message:
    "The action cannot be completed. The connection to Microsoft Exchange is unavailable.  Outlook must be online or connected to complete this action."  The folks in the Office365 support community have told me that Office365 ExchangeOnline
    servers have to be configured with the auto-setup and cannot be setup manually.
    I've done both a system refresh and a system reset, and I'm still getting the Rundll32 error.  I tried to run a reset from a disk, but the laptop does not want to run it from the external DVD drive (giving error messages), so that doesn't appear
    to be an option.
    I've searched extensively, and there doesn't seem to be any existing threads where anything like this problem is discussed. 
    Can you offer any ideas or solutions?
    After THREE WEEKS of troubleshooting this, and some significant delays in getting help from support, I'm really close to returning this laptop.
    I need an answer on this ASAP to see if you've got an insights before I return the laptop for a new one.
    Thanks,
    Jason

    IMPORTANT: I found the solution.  Another user figured it out and posted the answer on another thread.
    Please spread this around to all other Outlook support techs so they know to point people in the direction of the quick (though very obscure) fix to this problem. 
    See this thread for how to disable graphics acceleration in Office, which iswhat causes the rundll23 error.
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-outlook/rundll32-outlook-mail-windows-host-process-error/bf90e1fd-3985-4b15-bc50-f9b3e937a859?tm=1424345216297
    Thanks,
    Jason

  • Mail adapter error: Unsupported protocol: linsmtp [null "null"]

    Hi,
    Idoc to Mail adapter. First time working with mail adapter.
    When I tried to send messages from transaction "SO00", i'm able to receive the mail which means the connection is fine from XI to mail server.
    But when I try to send the file using mail adapter, it is failing in adapter engine with the error below.
    Success Mail: calling the adpter for processing
    Error Mail: call failed; com.sap.aii.messaging.srt.BubbleException: Unsupported protocol: linsmtp [null "null"]
    Success Mail: sending a delivery error ack ...
    Success Mail: sent a delivery error ack
    Error Mail: error occured: com.sap.aii.af.ra.ms.api.RecoverableException: com.sap.aii.messaging.srt.BubbleException: Unsupported protocol: linsmtp [null "null"]
    Error MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: com.sap.aii.messaging.srt.BubbleException: Unsupported protocol: linsmtp [null "null"]
    2010-11-12 14:12:02 Error Exception caught by adapter framework: com.sap.aii.messaging.srt.BubbleException: Unsupported protocol: linsmtp [null "null"]
    2010-11-12 14:12:02 Error Delivery of the message to the application using connection Mail_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: com.sap.aii.messaging.srt.BubbleException: Unsupported protocol: linsmtp [null "null"].
    Checked SMICM -- GOTO-->Services --> SMTP is active with green tick.
    Receiver adapter:
    Transport Protocol = SMTP
    Message Protocol = XIPAYLOAD or XI ALL
    URL = SMTP:linsmtp.sap.com
    Not using User Authentication
    User/ Password given - No userid/pwd
    From, To = mail id
    Content Encoding = try with none or base64*
    Is there any setting which I need to do? how to connect and send message to mail server?
    Thanks
    Deepthi.

    Hi,
    My connection is working now when I downloaded the xsd and executed in the mapping as described in the blog.
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    Connection is working fine now, but im getting the below payload.
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:Mail xmlns:ns1="http://sap.com/xi/XI/Mail/30">
      <Subject>TESTING</Subject>
      <From>deepthi at testing.com</From>
      <To>deepthi at testing.com</To>
      <Content>Testing purpose</Content>
      </ns1:Mail>
    The question is how to get my actual message which looks like below. this is the Idoc to file map and the resultant output file looks like below
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:order xmlns:ns0="http://testing/xi/OrderProcessing">
         <document_type>ZU</document_type>
         <vendor_number>200000</vendor_number>
         <vendor_email_address/>
         <vendor_address_line_1>XXXXXX</vendor_address_line_1>
         <vendor_address_line_2>XXXXXXXXX</vendor_address_line_2>
         <vendor_address_line_3>123242343244566</vendor_address_line_3>
         <vendor_address_line_4>US</vendor_address_line_4>
         <delivery_address_line_1>1433</delivery_address_line_1>
         <delivery_address_line_2>test</delivery_address_line_2>
    </ns0:order>
    How to send this file as email attachment using mail adapter. Do I need to use 2 maps?
    looks like Mail adapter is working only when we use the xsd which is given above and by providing the required details.
    Kindly help me if anyone worked on mail adapters.
    Thanks
    Deepthi,

  • Protocol Error: Unknown error. (1)

    I have a Centro (sprint) which  has been giving me lots of problems. i want to focus at 1 the issue now. I restored each database separately and it gave me the same error "protocol error: unknown error (1)" Then i back up with nothing checked off to transfer -meaning it's not a particular database giving me this issue AND I STILL GOT THE SAME ERROR. i used dbfixit to check everything and it's fine.
    How do i get rid of this error. 
    Thanks
    Sam
    PS i backup my data (in addition the the computer) with RSCBACKUP which is amazing!

    I have a Palm TX with the same error. Has anyone found a solution to the problem

  • "Ignore SSL errors" not an option in my version of Windows Mail for 8.1

    I have had problems connecting to my org's EAS using the Mail/Calendar/People apps since being forced to upgrade to 8.1.  I used Microsoft Remote Connectivity Analyzer and see there's a problem with these apps accepting the Go Daddy certificates used
    by my org.  When I choose "Ignore SSL errors" on the Analyzer, it connects fine.
    I've seen posts throughout indicating that the Mail app has a check box that allows the user to "Ignore SSL errors" BUT that is not showing up on my version of the app.
    Can someone please provide guidance as to why my version doesn't have this critical feature?

    Hi,
    I'm not sure where you find posts about "Ignore SSL errors" in Mail App for Windows 8.1, this option is also unavailable in my system, could you please share the posts you found with us?
    Maybe you mean this? But it's more related to development.
    http://blogs.msdn.com/b/wsdevsol/archive/2013/10/17/how-to-ignore-self-signed-certificate-errors-in-windows-store-apps-8-1.aspx
    http://blogs.technet.com/b/ptsblog/archive/2013/11/13/how-to-ignore-self-signed-certificate-errors-in-windows-store-apps-8-1.aspx
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Help me! digester has error MalForme URL ".." unknown protocol: classloader

    I have used validator which link to digester and error occured like this..
    13-04-07 08:18:59.840 ERROR - java.lang.IllegalArgumentException: Malformed URL
    'classloader:/org/apache/commons/digester/xmlrules/digester-rules.dtd' : unknown protocol: classloader :(ValidatorOperator.java:71)[HttpRequestHandler-5984162]
    13-04-07 08:18:59.855 DEBUG - ******************************************* :(ValidatorOperator.java:72)[HttpRequestHandler-5984162]
    this line comes from new ValidatorResources(inputstream in)
    which I already checked that inputstream is not null
    Please help!!

    I just think that it's related to what an URL is and that whatever you provided there isn't a valid one because there is no such protocol as "classloader". Which the error message already said.
    From the URL API docs:
    Protocol handlers for the following protocols are guaranteed to exist on the search path :-
    http, https, ftp, file, and jar
    Further:
    Protocol handlers for additional protocols may also be available.
    In other words, if there actually is a protocol named "classloader", you will have to have some JAR in the classpath that'll provide that information. Read the Digester docs to find out which one that might be.

  • Virtual Mail Domains and Email Client setup...

    Hello,
    I have read the Apple Mail Services pdf and I have read petrobytes pdf on virtual user setup and I now have it working.
    The question I have is if I have a virtual domain called vdom1.com and a local domain called ldom.com and I have a user called "user1" in each of these should I not be able to to use "user1" as the username in a mail client config? It won't let me and I would really rather not give out usernames that look like vdom1user1, if at all possible?
    Thanks,
    tom

    Well, obviously you haven't read my tutorial properly
    11. - What do my users need to know?
    "Username: user1 and password will not work or fetch the wrong
    mailbox (unless the user is a local domain user). For virtual
    domain users, [email protected] and password is the
    way to go."
    Use user1 for the local domains and [email protected] for the virtual domain.
    Alex

  • Sender mail Adapter - Log in Error

    Hi,
    I am facing the below error while communicating with the mail server using the POP3 transport protocol.
    exception caught during processing mail message; java.io.IOException: unexpected password response; read -ERR Logon failure: unknown user name or bad password.
    Confimed with  the mail server administrator there is no issue with log in credentials.
    We are able to access the mail box using the same user ID & password through webservice URL. But if we use the same User ID & password in communication channel it is showing the above error.
    Any one have the idea about other possibilities to get this error?
    Thanks & regards,
    Krishna

    Hi Vijay,
    It is POP3 protocol setup. We are able to login using webservise URL. But not able to log in with Mail adapter.
    Regards,
    Krishna

  • Set up reverse DNS for virtual mail hosting

    I need a bit of server configuation advice.
    I have a static IP and two public domains on a Snow Leopard server connected using NAT behind a firewall - with the necessary port forwarding to ensure all works. 
    1. abc.com is my primary domain on the server - server.abc.com
    2. I have xyz.com set up as a virtual domain and also as a virtual mail host
    This setup has worked well for a long time but I have found that emails to [email protected] are going missing.  If I check my mx records using one of the web based tools it show an error on the reverse dns for server.xyz.com showing a reverse DNS of server.abc.com.
    So the question - is it possible to have secondary 'virtual' DNS record on the server so reverse DNS works for the virtual mail host xyz.com?  If not how do I handle the reverse DNS problem which i think is causing some external mail server to reject mail due to the inconsistency on the reverse DNS lookup?
    Many thanks for any suggestions

    SMTP requires a DNS A record.
    A DNS A record is also known as a machine record.
    A DNS A record inherently means that forward DNS and reverse DNS will match.
    The forward translation translates the host name to the IP address.
    The reverse translation translates the IP address to host name.
    When the full translation produces the same host name, that's an A record.
    DNS CNAME records are aliases, and are used for virtual hosts.
    CNAME records inherently do not match the reverse DNS translations.
    To get your configuration to work, your server must have an A record.
    That means forward and reverse DNS will match.
    Any of the virtual hosts within your mail server then all use an MX pointing at the A record host.
    If you have your DNS hosted somewhere other than your ISP, then you'll need your ISP to set up a DNS PTR.
    The DNS PTR is the reverse translation; address to name.
    If you have your own DNS services within your network (as would be typical with a privately-addressed NAT'd network), set that up as a virtual host within SMTP.
    Here is some related reading on external (public) DNS, as related to SMTP servers and such.

Maybe you are looking for

  • Can anyone assist with a report that extracts the External ID field in the CRM

    I have a membership system where the client has imported 3600+ records some of which had the Eternal ID ('Your ID field on the import file) set and some don't. The trouble is I need to update all the CRM records and can't import the changes as I don'

  • How to fetch count along with other details

    I am trying to write a simple Select query that will return a list of Employee Names from EMPLOYEE_TABLE,and in the second colum a count of the number of entries for each employee in EMPLOYEE_ATTENDANCE table. Can anybody suggest how I could do this?

  • Default Sharing Permissions

    I am creating a Numbers doc on my local machine and uploading it to iCloud for sharing by clicking Share > Share via iCloud > Copy Link. This is generally working ok, but the document is being shared with with sharing permissions set to "Allow Editin

  • How do you turn off the screen lock on iPhone 5?

    How do you turn off the screen lock on iPhone 5? Would like my pics to turn Rotate on my screen again.

  • Why does Find My Friends keep going back to log-on screen in mid-use?

    During use, Find My Friends quits and goes back to a log-on screen, which tells me I'm logged in, and tells me that I have passcode lock activated. The only way to get back into the app is to log in again. Then I use it for a few seconds and it goes