SMTP mail incoming

Hi
I have an application in APEX 3 on 10gR2 that requires to be able to intercept SMTP mail incoming and process it. This mail would be sent to a particular address.
Our email servers our exchange 2003 servers would it be possible to retrieve the contents on a mailbox on that server and process it or would I need to put a forward on that mailbox to the incoming oracle SMTP server?
Thanks
Adam

i am doing this with oracle workflow. it is part of the database license.
there you can push incoming mail to any place in the database.
the configuration is a little tricky.
so long
volker

Similar Messages

  • Mail: Proper way to adjust IMAP/SMTP mail server entries?

    Please forgive, but I am still on 10.4 (Tiger) with an iCloud mail account. I believe this is still a widely applicable and helpful question!
    IMAP (Incoming Mail Server):
         MINE IS STILL:      mail.me.com  (Currently still working fine)
         Advised/required:     imap.mail.me.com
    SMTP (Outgoing mail server):
         MINE IS STILL:          smtp.me.com  (Currently still working fine)
         Advised/required:      smtp.mail.me.com
    QUESTION 1: To have the server entries set properly, can I simply make textual changes in the Incoming/Outgoing server name fields for my IMAP iCloud mail account (via insert of word "mail" in server names; change is not shown here)...
    ...or should one DELETE IMAP ACCOUNT (as I have commonly read!) and recreate with all new correct settings? If it is advisable to Delete the account, why wouldn't just making the quick server name adjustments be sufficient?
    Also, I need some fears assuaged:
    - "Deleting an IMAP mail account" in Mail has no risk/danger of losing/deleting all of your Sent and Received Inbox/Sentbox contents, correct? When you recreate an Account, all of your mail held on server is still fully safe and accessible, yes?
    ISSUE TWO:
    I like to use both my "me.com" and "mac.com" email addresses.
    Under "Edit (Outgoing) Server List," I still have a secondary older entry "smtp.mac.com" listed.
    QUESTION 2: Is the following statement of my understanding accurate?
    "Deletion of the smtp.mac.com outgoing server is completely acceptable and would not prohibit sending of email under mac.com email address because the "mac.com" email address is an alias for the me.com address and ALL mail (whether sent with mac.com or me.com email address) goes out through the ME.COM server."
    Is that correct. If not, kindly advise!
    I really appreciate the help.
    I am not a beginning Mac user and find that the complete configuration intricacies of Apple Mail (I know that's the old name) are one thing that users are never really guided to master and comprehend.
    Many thanks in advance!
    Bill from Maryland

    These are the settings recomended by Apple.
    IMAP (Incoming Mail Server) information:
    Server name: imap.mail.me.com
    SSL Required: Yes
    Port: 993
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    SMTP (outgoing mail server) information:
    Server name: smtp.mail.me.com
    SSL Required: Yes
    Port: 587
    SMTP Authentication Required: Yes
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    Note: If you receive errors using SSL, try using TLS instead.

  • SMTP Mail Bug?

    I've tried to insert an SMTP mail account into my iPhone, but each time I try to enter data, the phone resets to its main menu.
    Specifically, when I enter a 'password' for 'outgoing mail', any follow-on touch will cause the phone to return to the main menu. I have two other mail accounts set up and working just fine (.Mac and GMAIL), but this account requires a password for outgoing mail SMTP authentication - and that's where the iPhone stumbles. Has anyone else run across this bug?
    [Interestingly, I have a password entered for incoming mail, and the phone does fine at receiving mail from this account.]
    Thanks for any suggestions.

    Not sure where the problem lies but .Mac's SMTP server and Gmail's SMTP server is password authenticated.
    Reverting to the Home screen indicates an application crash.
    Try an iPhone reset and if no change, try deleting and then re-entering the account.
    If you are also accessing this account with the Mail application on your Mac, have you tried transferring the account settings from your Mac to your iPhone via your iPhone's sync preferences with iTunes?

  • Smtp mail client socket problem

    As soon i enter the smtp server address (smtp.mail.yahoo.com) i get the following:
    Exception in thread "main" java.net.UnknownHostException: smtp.mail.yahoo.com: smtp.mail.yahoo.com
            at java.net.InetAddress.getAllByName0(InetAddress.java:1128)
            at java.net.InetAddress.getAllByName0(InetAddress.java:1098)
            at java.net.InetAddress.getAllByName(InetAddress.java:1061)
            at java.net.InetAddress.getByName(InetAddress.java:958)
            at MailTest.<init>(MailTest.java:20)
            at MailTest.main(MailTest.java:97)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 11 seconds)
    import java.util.*;
    import java.net.*;
    import java.io.BufferedReader;
    import java.io.*;
    public class MailTest
        String from;
        String to;
        String smtp; //smtp.mail.yahoo.com
        String hostName;
        BufferedReader brin;
        PrintWriter pwout;
        String communication;   
        public MailTest() throws UnknownHostException,IOException
            readMailData();       
            Socket s=new Socket(InetAddress.getByName(smtp), 25);
            //tried also smtp.plus.mail.yahoo4.akadns.net and with the
            //corresponding ip
            hostName=InetAddress.getLocalHost().getHostName();
            brin=new BufferedReader(new InputStreamReader(s.getInputStream()));       
            pwout=new PrintWriter(s.getOutputStream());               
            receive();
            send("HELO "+ hostName);
            receive();
            send("MAIL FROM: <"+from+">");
            receive();
            send("DATA");
            receive();       
            send(readMessageBody());
            send(".");
            receive();
            s.close();
        private void receive() throws IOException
            System.out.println("Incoming Communication");
            System.out.println("-----------------------------------------");
            while (!(communication=brin.readLine()).equals(null))
                System.out.println(communication);
            System.out.println("-----------------------------------------");
        private void send(String s) throws IOException
            System.out.println("Outcoming Communication");
            System.out.println(s);
            pwout.write(s);
            pwout.flush();
            System.out.println("-----------------------------------------");
        private String readMessageBody() throws IOException
            String q="";
            String msgBuffer="";
            BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
            System.out.println("--------------Message--Body--------------");
            System.out.println("enter -Enter-quit-Enter- to exit");
            System.out.print(">");       
            q=in.readLine();       
            while (!q.equals("quit"));
                msgBuffer+=q;
                System.out.print(">");
                q=in.readLine();           
            System.out.println("-----------------------------------------");
            return msgBuffer;
        private void readMailData() throws IOException
            BufferedReader in= new BufferedReader(new InputStreamReader(System.in));                       
            System.out.println("From: ");
            from=in.readLine().trim();
            System.out.println("To: ");
            to=in.readLine().trim();
            System.out.println("SMTP server: ");
            smtp=in.readLine();       
        public static void main(String[] args) throws UnknownHostException, IOException           
            MailTest mt=new MailTest();
    }

    I would say you have a DNS problem, or perhaps you aren't connected to the Internet. Can you ping smtp.mail.yahoo.com? or at least can ping resolve the name?

  • Any way to select Ethernet ports for outgoing SMTP mail?

    We've got an Xserve G4 running OS X Tiger Server 10.4.6. We're hosting two domains for Web and Mail services (call them mydomain1.com and mydomain2.com). Web service is running great, and Mail service is running fairly well except for one minor snafu I can't seem to figure out.
    The problem is that outbound SMTP mail is always directed out through the same Ethernet port -- the primary Ethernet port. What I would like to have happen is that mail coming from [email protected] addresses go out through the primary Ethernet port (mail.mydomain1.com) and mail coming from [email protected] addresses go out through a secondary Ethernet port (mail.mydomain2.com). If we don't do this, there's a few mail servers out there who become paranoid and think we're spamming them -- they see mail coming from an IP address associated with the mydomain1.com domain for a user with a mydomain2.com ReplyTo address.
    Does anyone know of any way to select which port gets used for outbound mail selectively? Offhand I can't see any solution except to get a second e-mail server to handle mail for mydomain2.com.
    This may not impact the issue, but for incoming mail I'm making use of virtual domains (but not virtual hosts) so that mail can be received by a user in any of the following ways:
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    Any help would be appreciated.

    Ok, I found the solution in case anyone else is having this same problem. What I did was:
    1. Delete the MobileMe account from the iPhone
    2. Create the POP account with the proper inbound and outbound settings
    3. iPhone will attempt to connect to the POP via SSL which fails and prompts to go sans-SSL
    4. Accept the non-SSL option and back out of the Mail setup
    5. Create the MobileMe account
    6. Tap Add SMTP server
    7. The POP account's SMTP server will be listed, turn it on
    6. Turn off MobileMe's SMTP server
    9. Back out to view accounts and select the POP account
    10. Disable the POP account (prevents duplicate emails)
    It turns out that the phone will allow you to turn of SSL on POP accounts because it goes through the process of checking to see if it can use SSL -- when that fails, you have the option to turn it off. Because of the way MobileMe sets up, you don't have that option on that account which is why you need to create the POP first.

  • SMTP (outgoing / incoming) Stopped :(

    Hi ,
    I was setting up my mails server , and I have ticked the boxes " Enable SMTP " , Allow incoming mail Under the Settings > General tab in the server admin , and then restarted my mail services , but its fist shows SMTP starting up.... and then goes to SMTP stopped .....,
    how do I get this to work , please help as im really new to mac osx servers . ( I have been following the lynda.com video tutorials to set up the server)
    thank you .

    I stopped all the service and restarted my server , and start all my services.. and un-ticked the SSL on mail services.
    then tried to connect form a client " it still says username and password incorrect"
    the Logs ....
    SMTP
    Mar 29 12:34:07 macsrv postfix/postfix-script[1739]: fatal: the Postfix mail system is not running
    Mar 29 12:34:08 macsrv postfix/master[1783]: daemon started -- version 2.4.3, configuration /etc/postfix
    Mar 29 12:41:18 macsrv postfix/master[1783]: terminating on signal 15
    Mar 29 12:41:18 macsrv postfix/postfix-script[1951]: fatal: the Postfix mail system is not running
    Mar 29 12:41:24 macsrv postfix/postfix-script[2019]: fatal: the Postfix mail system is not running
    Mar 29 12:41:27 macsrv postfix/master[2064]: daemon started -- version 2.4.3, configuration /etc/postfix
    Mar 29 12:42:10 macsrv postfix/tlsmgr[2079]: warning: no entropy source specified with parameter tlsrandomsource
    Mar 29 12:42:10 macsrv postfix/tlsmgr[2079]: warning: encryption keys etc. may be predictable
    Mar 29 12:42:10 macsrv postfix/smtpd[2078]: connect from unknown[172.16.18.26]
    Mar 29 12:42:10 macsrv postfix/smtpd[2078]: disconnect from unknown[172.16.18.26]
    Mar 29 12:46:36 macsrv postfix/master[2064]: terminating on signal 15
    Mar 29 12:46:38 macsrv postfix/postfix-script[2126]: fatal: the Postfix mail system is not running
    Mar 29 12:46:38 macsrv postfix/master[2170]: daemon started -- version 2.4.3, configuration /etc/postfix
    Mar 29 12:49:22 macsrv postfix/smtpd[2211]: connect from unknown[172.16.18.26]
    Mar 29 12:49:22 macsrv postfix/smtpd[2211]: lost connection after EHLO from unknown[172.16.18.26]
    Mar 29 12:49:22 macsrv postfix/smtpd[2211]: disconnect from unknown[172.16.18.26]
    Mar 29 12:49:22 macsrv postfix/smtpd[2211]: connect from unknown[172.16.18.26]
    MAIL ACCESS LOG :
    Mar 13 15:04:13 macsrv idled[1230]: can't read mailboxes file
    Mar 29 12:50:21 macsrv master[2186]: exiting on SIGTERM/SIGINT
    Mar 29 12:50:21 macsrv master[2226]: getrlimit: max processes limit set to cur=2500 max=2500
    Mar 29 12:50:21 macsrv master[2226]: process started
    Mar 29 12:50:21 macsrv master[2227]: about to exec /usr/bin/cyrus/bin/ctl_cyrusdb
    Mar 29 12:50:31 macsrv master[2237]: getrlimit: max processes limit set to cur=2500 max=2500
    Mar 29 12:50:31 macsrv master[2237]: process started
    Mar 29 12:50:31 macsrv master[2238]: about to exec /usr/bin/cyrus/bin/ctl_cyrusdb
    Mar 29 12:50:31 macsrv ctl_cyrusdb[2238]: verifying cyrus databases
    Mar 29 12:50:32 macsrv ctl_cyrusdb[2238]: skiplist: recovered /var/imap/mailboxes.db (2 records, 472 bytes) in 1 second
    Mar 29 12:50:32 macsrv ctl_cyrusdb[2238]: skiplist: recovered /var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Mar 29 12:50:35 macsrv ctl_cyrusdb[2238]: done verifying cyrus databases
    Mar 29 12:50:35 macsrv master[2241]: about to exec /usr/bin/cyrus/bin/idled
    Mar 29 12:50:35 macsrv master[2237]: nodename nor servname provided, or not known, disabling sieve
    Mar 29 12:50:35 macsrv master[2237]: Cyrus POP/IMAP Server v2.3.8 ready for work
    Mar 29 12:50:35 macsrv master[2243]: about to exec /usr/bin/cyrus/bin/ctl_cyrusdb
    Mar 29 12:50:35 macsrv ctl_cyrusdb[2243]: checkpointing cyrus databases
    Mar 29 12:50:35 macsrv ctl_cyrusdb[2243]: archiving database file: /var/imap/annotations.db
    Mar 29 12:50:35 macsrv ctl_cyrusdb[2243]: archiving log file: /var/imap/db/log.0000000001
    Mar 29 12:50:35 macsrv ctl_cyrusdb[2243]: archiving database file: /var/imap/mailboxes.db
    Mar 29 12:50:35 macsrv ctl_cyrusdb[2243]: archiving log file: /var/imap/db/log.0000000001
    Mar 29 12:50:35: --- last message repeated 1 time ---
    Mar 29 12:50:35 macsrv ctl_cyrusdb[2243]: done checkpointing cyrus databases
    Mar 29 12:50:35 macsrv master[2237]: process 2243 exited, status 0
    if that helps . please need help

  • How do I restore smtp mail setting from time machine?

    Earlier today I was fooling around with my smtp mail settings and managed to mess them up.
    How do I restore smtp mail setting from time machine?
    I'm using Lion 10.7.4
    Messages and incoming mail works fine. It's just the smtp mail setting that's the problem.
    Any help greatly appreciated.

    The mail rules are stored in your ~/Library/Mobile Documents/com~apple~mail/Data.MailData folder, in a plist called SyncedRules.plist.
    If you're signed into iCloud D&D, that's where you'll find it.
    If you're *not* signed into iCloud, then you probably have a folder called something like ~/Library/Mobile Documents.####### where the # signs are actual numbers.  Digging into that folder, you'll fild the SyncedRules.plist file.
    Thing is, I don't know how Mail uses rules without iCloud; if there's a "local" rules location.  There probably is, but someone else who's not using iCloud may have to help you there...

  • Cannot send email through yahoo on iPad 4, apple.smtp.mail.yahoo not available as of December 1, 2012

    I am unable to send emails through yahoo on my ipad 4 wifi, just starting over the weekend. My 3 other non-yahoo email accounts are working fine on my ipad. When I try to send an email from the yahoo account, I receive the message that the connection to the outgoing mail server "apple.smtp.mail.yahoo" failed. I can send email through yahoo just fine on the web and on my computer through Thunderbird.

    Yahoo's been having persistently random issues for months. You can try just waiting it out, or delete and readd your yahoo account. When my accounts were affected I just used webmail to access my yahoo accounts until it cleared up.
    Chances are it's all on their end and really all you can do is wait it out.

  • Mail 4.1 incorrect "sending from" settings, won't send SMTP mail

    I've noted quite a few others reporting 10.6.1 SMTP mail problems, but I haven't seen my specific issue noted elsewhere.
    I've been able to send using my IMAP AOL address via Mail and longtime SMTP settings until today. Now, Mail apparently is scrambling outgoing email addresses and mismatching them with the outgoing SMTP settings. For instance:
    Using AOL address example [email protected] (showing correctly in the "From" window), the email will not send. The "cannot sent message using the server 'LG'..." dialogue comes up with the options to edit the SMTP server list or use the Connection Doctor. (All Connection Doctor reports coming back green, so the trouble's not there.)
    Looking a little closer at the dialogue box, though, it says Mail thinks the outgoing message is being sent from an entirely separate email address. In a couple of tests, the incorrect "sending from" address changes - one time it was a different AOL account, the next was an entirely separate .edu account. Wish I could attach a screenshot, but the bottomline is: I can see the "From" field showing the [email protected] address, but the error message about reconciling the outgoing server settings shows "Sending from: My Name <[email protected]>"
    Whatever the issue is, it is apparently not affecting (so far) my IMAP personal domain or IMAP gmail accounts - they're both sending and receiving normally.
    So Mail apparently is trying to send AOL account mail, but it's not finding the correct SMTP connection because somewhere along the way it's shifted the "sending from" to a different account.
    Any thoughts?

    I've been using Mail app with AOL accounts and the current settings for years with no trouble. This is new.
    I still think it's a Mail app issue - it's clearly showing in the error message a different "Sending from" account from the one that's actually selected and showing in the "From" window of the email message. It's as though Mail is trying to apply the existing SMTP settings for an erroneous account to the outgoing message. It's either trying to send [email protected] mail with YY.aol.com SMTP settings or vice versa.
    I'd be open to re-creating the AOL IMPAP accounts if I could avoid losing years worth of sent and received messages. I have everything backed up with Time Machine, but I've had very erratic email recovery issues with it since Snow Leopard too.

  • How to attach files in the SMTP mail?

    Hi All
    Anyone know how to how to attach files into the mail configured
    with SMTP while changing the workstatus. The SMTP mail is working
    fine, but my requirement is to attach a file which is having static information
    like instructions for users or something like that.
    Please help me on this..
    My Version of BPC is MS 7.X
    Regards,
    Baijuchandran.B

    Have you seen this thread? Not an elegant solution, but it appears to work for some bizarre reason.
    https://community.bt.com/t5/Email/Email-won-t-accept-attachments-error-18-temporary-It-isn-t/td-p/14...

  • Smtp mail for Grid connection timed out

    Moving from simple dbconsole to full EM Grid Control. Mail was configured and working previously for dbconsole (and continues to). However, when in EM Grid Control I am getting the error:
    Could not connect to SMTP host: smtp.xxxxxxx.com, port: 25; nested exception is: java.net.ConnectException: Connection timed out"
    E-mail can be sent from the dbsonole version. Walking through the steps for testing smtp mail through telnet etc, all result in success. There is no AUTH required.
    I shut down the dbconsole agent on the server, but still get the timeout error. What could be causing the timeout. It isn't a 'connection refused' error.

    OK so you have a database installed on server A.
    DBconsole is also installed on server A.
    You can telnet to smtp.xxxxx.com on port 25 from server A.
    You have installed GC.
    You should now have a GC agent installed on server A.
    What type of GC installation did you do?
    Where is the GC Database?
    Where is the GC OMS?
    Can you telnet to smtp.xxxxx.com on port 25 from the GC database server?
    Can you telnet to smtp.xxxxx.com on port 25 from the GC OMS server?

  • Can we provide UN and pwd Authentication 4r SMTP Mail Configuration

    Dear All,
    Previously we are able to send the mails from SAP to Outside World. After chaning the Mail Server to MS Exchange 2003
    We enabled the Port the 25.
    We are facing a problem While configuring a mail via SMTP for Exchange Server 2003.
    Throws an Error Message:
    Internal error: CL_SMTP_RESPONSE ESMTP error code is not known. 554 554 > : Recipient add
    As per network Team :
    Unless we provide a Username and password, the Send/Receive process does not happen.
    Is there any option in SAP - SMTP Mail Configuration to Provide user and password Authentication.
    I searched in SDN as well as in market place. but i could not succeed. Please guide me the process.
    Regards
    SNB.

    Hi we are configuring Google SMTP getting below error..
    No delivery to xxx.com, authentication required
    Message no. XS856
    Diagnosis
    The message was processed successfully in the SAP system. The mail server that is to receive the message for further processing requires authentication. Probably there is no logon data specified in the SAPconnect configuration.
    Information from external system (if available)
    smtp.gmail.com:587
    530 5.7.0 Must issue a STARTTLS command first. i91sm11178241qgd.25 - gsmtp
    Procedure
    Enter the logon data in the SAPconnect node.
    Using Gmail SMTP server using "smtp.gmail.com" with port 587
    Please advise.
    Regards,
    Sudarshan

  • How to identify the name of my smtp-mail host dynamically?

    Hi,
    I want to send an email from my system which has an internet connection.
    I don't know how to identify and mention the name of my smtp server ie; the smtp-host name that should be mentioned in my propetries object 'props' as props("mail.smtp.host","smtphostname");
    I want this program to work on other systems also,ie; It should dynamically find out what is the smtp-email host for the computer on which the program is running and set the smtp-host name in the 'properties' object dynamically.
    I will be thankful if anybody sends me code to solve this problem.
    Thank u in advance,
    Ravi.

    Write a mail scan to look for typical settings
    such as domain, mail.domain, smtp.domain, smtp.mail.domain
    where domain is after @ in an email address
    Have a SocketSearch class that uses non blocking via java.nio.channels.*
    so it can be interruptable and scan for these typical mail settings on default port 25 - The code using these interruptable socket can each be threaded to find the host/port and should find it in seconds
    Once found, store the settings in a configuration so you don't have to scan again unless it doesn't work anymore...
    If can't find the socket host/port via typical settings, next use a Java class that does a nslookup based on MX records - For example if you type "nslookup -type=mx javasoft.com" and you get mail exchanger = mail.java.sun.com and if you "telnet mail.java.sun.com 25" - you can see the port is open for sending emails.
    No expert in MX records for a domain to find the exact one and someone else can share some light on this...

  • SMTP Mail Adapter settings

    Hi Experts,
      I have small doubt regarding SMTP Mail Adapter settings.
    Right now i am sending files in attachment to the Users through SMTP.
    But  now User needs in MIME type for which i can see settings in Security Parameter.
    I can see is S/MIME, when i flag that i can see Duration like Days, hours, minutes, seconds.
    Could you please tell me what is the significance of it.
    Appreciate for your suggestions
    Regards,
    Bhasker

    Hi,
    >>>What does Duration means is that if i give duration that security archiving works for that duration
    nothing for now - this functionality does not work so it makes no difference what does it mean
    Regards,
    Michal Krawczyk

  • SMTP  - mail service

    Hi,
    i configured the SMTP for mail service.
    I can able to send mail to our domain   ( for ex: abc.com )  - default domain
    i gave SMTP Connection as  :  mail.abc.com 
    the above scenario --- will work for me if i send mail to our default domain. but i am not able to send to yahoo, gmail.
    Please help me ...
    --- Lee

    Hi Lee,
    In the SCOT, SMTP node you need to have the SMTP server address. if you've given the sap server IP address, then revert it back.
    What Juan has already mentioned,
    "you need to make sure that the IP address of the SAP System is populated on the SMTP relay agent for the mails to leave the domain." that means you've to tell your SMTP mail admin guys to add the SAP server IP address in the relay agent.
    Regards,
    Debasis.

Maybe you are looking for