Smtp authentication for email invites with RTC

I'm trying to configure email invitations for Real-Time conferences and am following the documentation.
Problem I'm encountering is we use smtp host authentication with Exchange but I don't see any way to set this up for RTC invites.
rtcctl> setProperty -system true -pname EmailEnabled -pvalue true
rtcctl> setProperty -system true -pname SmtpHost -pvalue "mail-net.company.com"Where do I set an SMTP username and password?
Thanks.

Any comments from Oracle? Isn't anyone doing smtp authentication for outbound emails?

Similar Messages

  • IPhoto 11 (9.2.1) can't use iCloud Mail smtp server for email.

    iPhoto 11 (9.2.1) can't use iCloud Mail smtp server for email.  "The email server didn't recognise username/password combination".  Both appear correct in preferences/accounts.  Mail sends and receives messages perfectly.
    (This problem also occurs when trying to send from Thunderbird, however both iPhoto and Thunderbird can send perfectly well using the Gmail server).

    Hi there
    I should explain that I have 5 days experience of the iMac but have had a working iCloud account with my iPad for several months.  I don't think this is an iCloud issue as such. My thought is that this is something to do with the Mail application itself and its relationship to my Apple ID etc. (Perhaps when the iMac first configured itself?)
    I have deleted and manually reset both Mail and iPhone account settings for iCloud using the Apple recommended settings and I have tentatively checked that the username/password combination is as expected in Keychain but I'm too much of an Apple novice to go any further with that.
    On a PC I think I would try reinstalling the Mail programme but I don't see that as an option.

  • SMTP authentication for wap baesd email

    Hi...
    I m trying my hands on WAP based email system... I m working with javamail and servlets for the same..
    The application developed so far works well except while sending mails, SMTP authentication is requred..
    can some one elaborate how to handle this thru java as in while creating SMTP session smtpsession, how do we use the authentication feature....
    Thnkcx
    v!
    More details.. this is my send mail function.
    public void send(HttpServletRequest request,HttpServletResponse response, UserSessionData userSessionData)
    throws ServletException, IOException, MessagingException {
    try {
    String from = userSessionData.getEmailAddress();
    String to = request.getParameter("to");
    String cc = request.getParameter("cc");
    String subject = request.getParameter("subject");
    String text = request.getParameter("text");
    //Define message
    MimeMessage message = new MimeMessage(userSessionData.getSmtpSession());
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    try {
    message.addRecipient(Message.RecipientType.CC, new InternetAddress(cc));
    } catch (AddressException ae) {
    //Bad cc address
    message.setSubject(subject);
    message.setText(text);
    //send message
    Transport.send(message);
    this.mainMenu(request, response, userSessionData);
    }catch (Exception e) {
    e.printStackTrace();
    Any suggestions guys ?

    I hope this help you
    //Define message
    Session session = userSessionData.getSmtpSession();
    MimeMessage message = new MimeMessage(session);
    // Send message
    Transport transport = session.getTransport("smtp");
    transport.connect(HOST, MAIL_USER, MAIL_PWD);transport.sendMessage(message);

  • SMTP Authentication for PHP Mail

    Can anyone help me in figuring out the correct way to incorporate the SMTP authentication into a form? I am having a lot of trouble in getting my forms to send with this format. My code for my php action page is below. I have my correct information where i included *******. Please let me know what i have wrong.
    CODE STARTS HERE
    <?php
    //new function
    $to = "*******";
    $nameto = "LTL Freight Shop";
    $from = "*******";
    $namefrom = "LTL Freight Shop";
    $subject = "Account Request";
    authSendEmail($from, $namefrom, $to, $nameto, $subject, $message);
    ?>
    <?php
    $recipient  = "*******";
    //$subject = "Account Request";
    $companyname = check_input($_POST['CompanyName'], "Enter your company name");
    $firstname  = check_input($_POST['FirstName'], "Enter your first name");
    $lastname  = check_input($_POST['LastName'], "Enter your last name");
    $phone  = check_input($_POST['PhoneNumber'], "Enter your phone number");
    $fax  = check_input($_POST['FaxNumber']);
    $email  = check_input($_POST['Email'], "Enter your email");
    $address  = check_input($_POST['StreetAddress'], "Enter your address");
    $city  = check_input($_POST['City'], "Enter your city");
    $state  = check_input($_POST['State'], "Enter your state");
    $zipcode  = check_input($_POST['ZipCode'], "Enter your zip code");
    $country  = check_input($_POST['Country'], "Enter your country");
    $yearsinbusiness  = check_input($_POST['YearsinBusiness'], "Enter your years in business");
    $typeofindustry  = check_input($_POST['TypeofIndustry'], "Enter your type of industry");
    $multiplelocations    = check_input($_POST['MultipleLocations']);
    $numberoflocations  = check_input($_POST['LocationsCount']);
    $ltl  = check_input($_POST['ServicesLTL']);
    $ftl  = check_input($_POST['ServicesFTL']);
    $domesticparcel  = check_input($_POST['ServicesDomesticParcel']);
    $intlparcel  = check_input($_POST['ServicesInternationalParcel']);
    $airfreight  = check_input($_POST['ServicesAirFreight']);
    $oceanfreight  = check_input($_POST['ServicesOceanFreight']);
    $other  = check_input($_POST['ServicesOther']);
    $none  = check_input($_POST['ServicesNone']);
    $volume  = check_input($_POST['TypicalVolume'], "Enter your typical volume");
    $carrier  = check_input($_POST['CurrentCarrier'], "Enter your current carrier");
    $class  = check_input($_POST['AverageClass'], "Enter your average class");
    $weight  = check_input($_POST['AverageWeight'], "Enter your average weight");
    $process   = check_input($_POST['Process']);
    $hearabout = check_input($_POST['HearAbout']);
    $comments = check_input($_POST['Comments']);
    if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
        show_error("E-mail address not valid");
    $message = "You have received an account request from:
    Company Name: $companyname
    First Name: $firstname
    Last Name: $lastname
    Phone Number: $phone
    Fax Number: $fax
    E-mail: $email
    Street Address: $address
    City: $city
    State: $state
    Zip Code: $zipcode
    Country: $country
    Years in Business: $yearsinbusiness
    Type of Industry: $typeofindustry
    Multiple Locations: $multiplelocations
    Number of Locations: $numberoflocations
    Services they use: $ltl, $ftl, $domesticparcel, $intlparcel, $airfreight, $oceanfreight, $other, $none
    Typical Volume: $volume
    Current Carrier: $carrier
    Average Class: $class
    Average Weight: $weight
    How they currently process: $process
    How they heard about us: $hearabout
    Comments: $comments
    End of message
    //ini_set("SMTP","smtp.emailsrvr.com");
    //ini_set("SMTP_PORT", 25);
    //ini_set("sendmail_from","*******");
    //mail($recipient, $subject, $message);
    function check_input($data, $problem='')
        $data = trim($data);
        $data = stripslashes($data);
        $data = htmlspecialchars($data);
        if ($problem && strlen($data) == 0)
            show_error($problem);
        return $data;
    function authSendEmail($from, $namefrom, $to, $nameto, $subject, $message)
    $smtpServer = "smtp.emailsrvr.com";
    $port = "25";
    $timeout = "30";
    $username = "********";
    $password = "********";
    $localhost = "smtp.emailsrvr.com";
    $newLine = "\r\n";
    $smtpConnect = fsockopen($smtpServer, $port, $errno, $errstr, $timeout);
    $smtpResponse = fgets($smtpConnect, 515);
    if(empty($smtpConnect))
    $output = "Failed to connect: $smtpResponse";
    return $output;
    else
    $logArray['connection'] = "Connected: $smtpResponse";
    fputs($smtpConnect,"AUTH LOGIN" . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['authrequest'] = "$smtpResponse";
    fputs($smtpConnect, base64_encode($username) . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['authusername'] = "$smtpResponse";
    fputs($smtpConnect, base64_encode($password) . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['authpassword'] = "$smtpResponse";
    fputs($smtpConnect, "HELO $localhost" . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['heloresponse'] = "$smtpResponse";
    fputs($smtpConnect, "MAIL FROM: $from" . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['mailfromresponse'] = "$smtpResponse";
    fputs($smtpConnect, "RCPT TO: $to" . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['mailtoresponse'] = "$smtpResponse";
    fputs($smtpConnect, "DATA" . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['data1response'] = "$smtpResponse";
    $headers = "MIME-Version: 1.0" . $newLine;
    $headers .= "Content-type: text/html; charset=iso-8859-1" . $newLine;
    $headers .= "To: $nameto <$to>" . $newLine;
    $headers .= "From: $namefrom <$from>" . $newLine;
    fputs($smtpConnect, "To: $to\nFrom: $from\nSubject: $subject\n$headers\n\n$message\n.\n");
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['data2response'] = "$smtpResponse";
    fputs($smtpConnect,"QUIT" . $newLine);
    $smtpResponse = fgets($smtpConnect, 515);
    $logArray['quitresponse'] = "$smtpResponse";
    function show_error($myError)
    ?>
        <html>
        <body>
        <b>Please correct the following error:</b><br />
        <?php echo $myError; ?>
        </body>
        </html>
    <?php
    exit();
    ?>

    I have the same problem - user has Outlook 2010 on Exchange 2007. Mail goes directly into the deleted items folder. After browsing around the net I found 2 different site with the same potential fix. It seems that when migrating a user from Exch 2003 to
    2007 (which we did) some of the configs get set incorrectly. The weird thing is we migrated over 2 years ago, and some others are experiencing the same after a long period after the migration. The fix that was suggested is:
    Go to your Exch server, open up Exchange Management Shell and type the following:
    get-mailboxcalendarsettings "domain/ou/user" | fl 
    set-mailboxcalendarsettings "doman/ou/user" -automateprocessing: Autoupdate 
    My user already had Autoupdate set, but this seems to have fixed it for me...

  • ICloud Calendar email invitations with my personal email domain

    Hi,
    I want to send the invitations of the calendar of iCloud with my work email, with the domain of my company @espero.it (and not with mail @me.com, @mac.com or @gmail.com).
    I try to set my apple account just with this email address, but the invitations now send with the domain @mac.com and not with the email of my account... If I set the email address with @gmail.com it works...
    why? can't I send with my domain??

    now it works: the invitations of calendar are send with my personal domain.
    But there's another big problem: the invitations that I send to another user that have an email with my same domain ([email protected] to [email protected]) don't arrive, but are blocked by the mailserver, for security...
    If in iCloud Calendar I could add the authenticatin-data of my email account, iCloud can send the invitations with authentication, and so my mail-server doesn't block!!

  • SMTP Authentication for Notifications

    Hi All,
    I am trying to configure KM notifications. Our smtp server needs an authentication and I have configured e-mail service as follows :
    Enable session debug info No
    Parse personalized addresses: No
    Send partial:  Yes
    Type: SMTP
    Password: *******
    Server: (IP address of exchange server)
    User: portal
    User and password are defined on exchange server.
    When Portal tries to send mail it doesn't authenticate to the exchange server then it gets "client was not authenticated" message. Here is the communication between portal and smtp server :
    <b>Portal :</b> EHLO HMSAPPRT
    <b>Smtp Server :</b>
    250-xxx.exchangeserver.com Hello [10.0.0.47]
    250-TURN
    250-ATRN
    250-SIZE 51200000
    250-ETRN
    250-PIPELINING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-8bitmime
    250-BINARYMIME
    250-CHUNKING
    250-VRFY
    250-X-EXPS GSSAPI NTLM LOGIN
    250-X-EXPS=LOGIN
    250-AUTH GSSAPI NTLM LOGIN
    250-AUTH=LOGIN
    250-X-LINK2STATE
    250-XEXCH50
    250 OK
    <b>Portal :</b> : MAIL FROM:<[email protected]>
    <b>Smtp Server :</b> :454 5.7.3 Client was not authenticated.
    Event I fill username and password fields in e-mail channel it doesn't authenticate on smtp server.
    Anybody has tried smtp authentication before ?
    Thanks in advance
    Abdul.

    Hello,
    did you try to give it your Mailing user and password instead of "portal"?
    regards
    Guido

  • Smtp authentication for remote relaying ?

    hi all
    i've just setup the mail server and all works well, no issues.
    i can send and receive email.
    question...
    i want to be able to send/relay via the smtp server while outside the LAN.
    any suggestions ?

    Thanks for the link---I was looking for an answer to the same question.
    I will try this alternate SMTP submission port. But my question is why does sending mail from outside the LAN on port 25 not work? With authentication required on the server and set up on the mail client, Mail app always reports the server as being offline. If I turn authentication off in Mail app, it connects to the server fine but then (of course) the server refuses the mail because it's not authenticated.
    So is it only possible to send authenticated SMTP mail on port 587 and this is why you have to set up an alternate SMTP port?
    Thanks for helping me to understand these things!
    Peter

  • Can you use a text field for email sender with E-mail button

    basically i would like to use input information from the user when someone sends an email instead of the default which is to look for a third party e-mail program like outlook. I want to bypass that and possibly use a text field that has the user input their email. some people don't use outlook so it would be nice to bypass that somehow. Is there a way to send email without the whole outlook thing, like not needing a "sender" and instead require them to input email address. I just want to receive the pdf. I am using LIVECYCLE by the way.

    You must enable POP forwarding for the account preferences via webmail access for the account.
    http://mail.google.com/support/bin/answer.py?answer=13273
    http://www.macosxhints.com/article.php?story=20041110192454841
    The instructions for enabling POP forwarding and creating the account as a POP account with an email client such as the Mail.app are available at Gmail's website.

  • ICal Server email invitations with external mail server

    So I see lots of people have worked out the kinks to get iCal Server to send invites to external email accounts when using the Mail server on the same machine as the iCal Server, but who has it working when the mail server is somewhere else? Any help would be appreciated... I have setup it up like this:
    Email Address: [email protected]
    Incoming Mail Server: mail.mailserver.com
    User Name: com.apple.calendarserver (I created this account on the mail server)
    Password: Same as the one in my keychain for com.apple.calendarserver
    Outgoing Mail Server: mail.xyz.com
    Username: com.apple.calendarserver
    Password: Same as the one in my keychain for com.apple.calendarserver
    When I send invites, this is what I get in the logs:
    2010-05-24 20:59:31-0500 [-] [caldav_task] 2010-05-24 20:59:31-0500 [-] [calendarserver.sidecar.task#debug] Checking for tasks
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * OK mail.mailserver.com Zimbra IMAP4rev1 service ready
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] IMAP servergreeting
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] SENDING: 0001 CAPABILITY
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * CAPABILITY IMAP4rev1 AUTH=PLAIN AUTH=X-ZIMBRA ACL BINARY CATENATE CHILDREN CONDSTORE ENABLE ESEARCH ID IDLE LIST-EXTENDED LITERAL+ LOGIN-REFERRALS MULTIAPPEND NAMESPACE QRESYNC QUOTA RIGHTS=ektx SASL-IR SEARCHRES UIDPLUS UNSELECT WITHIN
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: 0001 OK CAPABILITY completed
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] SENDING: 0002 AUTHENTICATE PLAIN
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: +
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] SENDING: AGNvbS5hcHBsZS5jYWxlbmRhcnNlcnZlcgB5M1h4bkZaejU3ZEZVVExW
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: 0002 OK [CAPABILITY IMAP4rev1 ACL BINARY CATENATE CHILDREN CONDSTORE ENABLE ESEARCH ID IDLE LIST-EXTENDED LITERAL+ LOGIN-REFERRALS MULTIAPPEND NAMESPACE QRESYNC QUOTA RIGHTS=ektx SASL-IR SEARCHRES UIDPLUS UNSELECT WITHIN] AUTHENTICATE completed
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] IMAP logged in [unauth]
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] SENDING: 0003 SELECT Inbox
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * 0 EXISTS
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * 0 RECENT
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * OK [UIDVALIDITY 1] UIDs are valid for this mailbox
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * OK [UIDNEXT 258] next expected UID is 258
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * FLAGS (\Answered \Deleted \Draft \Flagged \Seen $Forwarded $MDNSent Forwarded $Junk $NotJunk Junk JunkRecorded NonJunk NotJunk)
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * OK [PERMANENTFLAGS (\Answered \Deleted \Draft \Flagged \Seen $Forwarded $MDNSent Forwarded \*)] junk-related flags are not permanent
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * OK [HIGHESTMODSEQ 12] modseq tracked on this mailbox
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: 0003 OK [READ-WRITE] SELECT completed
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] IMAP Inbox selected [unauth]
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] Unhandled unsolicited response: ['OK', ['HIGHESTMODSEQ', '12'], 'modseq', 'tracked', 'on', 'this', 'mailbox']
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] SENDING: 0004 UID FETCH 1:* (UID)
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: 0004 OK UID FETCH completed
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] IMAP got uids [unauth]
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] IMAP Inbox has 0 messages
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] SENDING: 0005 CLOSE
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: 0005 OK CLOSE completed
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] IMAP in cbClosed [unauth]
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] Mailbox closed
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] SENDING: 0006 LOGOUT
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: * BYE mail.mailserver.com IMAP4rev1 server terminating connection
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadProtocol#debug] RECEIVED: 0006 OK LOGOUT completed
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadFactory#debug] IMAP factory connection lost
    2010-05-24 20:59:39-0500 [-] [mailgateway] 2010-05-24 20:59:39-0500 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadFactory#debug] Scheduling next IMAP4 poll
    Any help would be greatly appreciated!

    Okay, got this figured out. Appears that the email server my client's company uses is terminating the connection when the Xserve tries to do anything. I setup a test Gmail account and used those settings instead and everything worked just fine.

  • AAA Radius Authentication for Remote VPN With ACS Server Across L2L VPN

    Hi,
    I have an ASA running fine on the network which provide L2L tunnel to remote site and provide Remote VPN for remote access users.
    Currently, there is a need for the users to authenticate against an ACS server that located across the L2L VPN tunnel.
    The topology is just simple with 2 interfaces on the ASA, inside and outside, and a default route pointing to the ISP IP Address.
    I can ping the IP address of the ACS Server (which located at the remote site, IP addr: 10.10.10.56) from the ASA:
    ping inside 10.10.10.56
    However when I configure the ASA for the AAA group with commands:
    aaa-server ACSAuth protocol radius
    aaa-server ACSAuth host (inside) 10.10.10.56 key AcsSecret123
    Then when I do the show run, here is the result:
    aaa-server ACSAuth protocol radius
    aaa-server host 10.10.10.56
    key AcsSecret123
    From what I thought is, with this running config, traffic is not directed to the L2L VPN tunnel
    (seems to be directed to the default gateway due to the default route information) which cause failure to do the AAA authentication.
    Does anybody ever implement such this thing and whether is it possible? And if yes, how should be the config?
    Your help will be really appreciated!
    Thanks.
    Best Regards,
    Jo

    AAA is designed to enable you to dynamically configure the type of authentication and authorization you want on a per-line (per-user) or per-service (for example, IP, IPX, or VPDN) basis. You define the type of authentication and authorization you want by creating method lists, then applying those method lists to specific services or interfaces.
    http://www.cisco.com/en/US/docs/ios/12_4/secure/configuration/guide/schaaa.html

  • Trying to create a document that's an email invite with an embedded link

    Well the subject just about says it all... But here goes, I need to create an invitation to a new website. This invite will, I'm sure be forwarded manytimes over. That's why I'm trying to embed the url into the image and everytime I drag the doc into applemail it just comes up as a document icon and won't let me control click view as (it's greyed out) Any direction on this one.
    Thanks...

    Mr. "P",
    I think it's more a problem with Mail but with Pages.
    Pages documents are so-called packages, i.e. folders that contain several files necessary for Pages. That's why you see the icon: Mail tries to send the document as an attachment (and will even zip the document).
    Mail by default doesn't allow you to create HTML-mails. You can find a description how to create a newsletter with Pages in this posting: http://discussions.apple.com/message.jspa?messageID=2538151#2558882. Just adopt the steps to your needs.
    Another alternative would be to install the Mailpictures bundle for Mail. The advanced preferences option "Show options in compose window" will allow you to use raw HTML in your message.
    If this information is useful to you, please mark it as "helpful" or "solved" using the little buttons in the titlebar of this message. Thank you.

  • What are steps configure Certificate based authentication for Wireless clients with ACS 5.3?

    I need to autheticate my clients connecting via wireless.
    clients have user certificate installed on them, i need help configuring the ACS to do the authentication.
    can some one please help me with the steps.
    Thanks

    Two primary steps
    - define the trust certificates needed to verify the clients user certificates
    Users and Identity Stores > Certificate Authorities
    - change result of identity policy to select a certificate authorization profile. If have the defautl config
    Access Policies > Access Services > Default Network Access > Identity
    by default can select the "CN Username" as a result

  • Creative Web Cam Monitor - Where to put smtp info for email??

    I want my webcam to automatically email me the second somebody opens my computer door at home. the camara works great, the software works, only I can not find any place to put my email account information so that my smtp server can authenticate.

    I want my webcam to automatically email me the second somebody opens my computer door at home. the camara works great, the software works, only I can not find any place to put my email account information so that my smtp server can authenticate.

  • How do I create a group list for email contacts with the I pad ?

    How do I create a group contacts with the iPad ?

    If you set up groups in iCloud, a contact can also belong to multiple groups. And no work around or mispurposing of a field needed. You can also filter a group without using the search function. Plus, your contacts are backed and available via another avenue if needed.
    Not questioning your solution - I'm sure it works - but the functionality exists within the design.

  • Exporting a .mov below 25MB for email? With some quality?

    Is there anyway to set the size limit of an exported quicktime movie? I need it to be 25MB or below but still have some quality to it. And if there is can you please walk me threw it? Again, thank you.

    There are three variables in video encoding: bitrate, quality, and time. (with the first and second dominating).
    That being said, use a bitrate calculator or just compute it yourself and figure out how many mbit/sec you can go up to and then set your encoder to that bitrate and multi-pass encoding and see what you get.
    My suggestion would be to not send it via e-mail - upload to somewhere and have the client preview it that way.

Maybe you are looking for

  • Jar file is not working

    Hi, I have an Applet packed in a JAR file. It works very well in my local site, but when I upload it to internet it throws a java.lang.ClassNotFoundException: nibbly Of course I've checked names, cases, files are in the same directory. The html code

  • I ran the new itunes 1.11 update and itunes is no longer found on my computer and it will not allow me to reinstall. What happened?

    I recently ran the itunes 11.1 update and itunes is now gone from my computer and will not allow it to be reinstalled. I am running Windows 7. Any ideas?

  • Connman-ncurses - A simple way to configure connman

    Hi, I wanted to let you know that I made a ncurses front end for connman. If you already had to use connmanctl, well this is much simpler. This is currently in "beta" but basic use cases work (connection, disconnection and network configuration). I w

  • Account Administrator

    So I don't know how, but my parents managed to set their sole account to standard and now there is no administrator on the computer. This is particularly troublesome when trying to install software updates or when preforming any other action that req

  • Accounting and Reporting sequences

    I've configured the Accounting and reporting sequences for both: - GL-period Close - GL Journal Entry and - GL-period close - Subledger Journal Entry and I still can not see reporting sequences for all subledger journals (not on any form nor on any r