How to send gmail for oracle10gR2

ERROR 在行 1:
RA-29278: SMTP 暫時錯誤: 421 Service not available
RA-06512: 在 "SYS.UTL_SMTP", line 21
RA-06512: 在 "SYS.UTL_SMTP", line 97
RA-06512: 在 "SYS.UTL_SMTP", line 399
RA-06512: 在 "ERP_OBJ.AAB_MAIL", line 132
RA-29278: SMTP 暫時錯誤: 421 Service not available
RA-06512: 在 line 1

user9946359 wrote:
ERROR 在行 1:
RA-29278: SMTP 暫時錯誤: 421 Service not available
RA-06512: 在 "SYS.UTL_SMTP", line 21
RA-06512: 在 "SYS.UTL_SMTP", line 97
RA-06512: 在 "SYS.UTL_SMTP", line 399
RA-06512: 在 "ERP_OBJ.AAB_MAIL", line 132
RA-29278: SMTP 暫時錯誤: 421 Service not available
RA-06512: 在 line 1http://www.lmgtfy.com/?q=SMTP+transient+error:+421+service+not+available
Not an Oracle problem.
do as below
telnet <SMTP_Server_name> 25
copy command above & results then PASTE all back here
GMAIL refuses to forward your spam message
telnet mail.google.com 25
Trying 74.125.224.181...
Trying 74.125.224.182...
Trying 74.125.224.183...
Trying 74.125.224.184...
telnet: Unable to connect to remote host: Connection timed out
Edited by: sb92075 on Aug 9, 2011 6:57 PM

Similar Messages

  • Documaker : how to send Email for test

    Hi Experts,
    I want to do the test sending email from Documaker.
    I can created the HTML file, but I can not figure out how to send mail for test.
    This question might be very basic contents, but please let me know.
    Thanks,

    You can find all of the Documaker documentation online at the following link: Insurance Documentation

  • Re : How to send CC for mail

    Hi
           I send mail for to address using the functional module ,SO_NEW_DOCUMENT_ATT_SEND_API1,  
    Now i have to send CC also. How to do this.
    Thanks
    Anto

    HI Antony
    try this code
    DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: OBJBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    DATA L_NUM(3).
    Creation of the document to be sent
    File Name
    DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
    DOC_CHNG-OBJ_DESCR = 'Delivered Mail'.
    Mail Contents
    OBJTXT = 'Object text'.
    APPEND OBJTXT.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = 'RAW'.
    APPEND OBJPACK.
    Creation of the document attachment
    LOOP AT ITAB_DATA.
    CONCATENATE ITAB_DATA-PRODUCTOR
    ITAB_DATA-VBELN
    ITAB_DATA-POSNR
    ITAB_DATA-MATNR INTO OBJBIN.
    APPEND OBJBIN.
    ENDLOOP.
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    OBJHEAD = 'ORDERS'.
    APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
    OBJPACK-TRANSF_BIN = 'X'.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 1.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = 'TXT'.
    OBJPACK-OBJ_NAME = 'WEBSITE'.
    OBJPACK-OBJ_DESCR = 'ORDERS.TXT'.
    OBJPACK-DOC_SIZE = TAB_LINES * 255.
    APPEND OBJPACK.
    Completing the recipient list
    target recipent
    clear RECLIST.
    RECLIST-RECEIVER = 'xyz'.
    RECLIST-EXPRESS = 'X'.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    copy recipents
    clear RECLIST.
    RECLIST-RECEIVER = 'xyz2'.
    RECLIST-EXPRESS = 'X'.
    RECLIST-REC_TYPE = 'U'.
    RECLIST-COPY = 'X'.
    APPEND RECLIST.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = DOC_CHNG
    TABLES
    PACKING_LIST = OBJPACK
    OBJECT_HEADER = OBJHEAD
    CONTENTS_BIN = OBJBIN
    CONTENTS_TXT = OBJTXT
    RECEIVERS = RECLIST
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    OPERATION_NO_AUTHORIZATION = 4
    OTHERS = 99.
    hope this helps
    regards
    Aakash Banga

  • How to send parameters for POST request in AJAX?

    hi friends,
    I am sunil. I am working on ajax.
    My problem is how to send post parameters in AJAX.
    For GET request. I am using bleow and it is workin fine.
    var url = "GetCurrencyRateController?currid="+CurrId+"&lncurrid="+LnCurrID;
    For POST Requert i am sending as
    var url = "GetCurrencyRateController";
    req.send("currid="+CurrId+",lncurrid="+LnCurrID);
    but it is not working

    Check out the Apache HttpClient package and look for how to use the MultipartPostMethod.
    Here is some sample code:
                HttpClient client = new HttpClient();
                MultipartPostMethod filePost = new MultipartPostMethod("http://localhost:8080/MyApp/Push");
                filePost.addParameter("subName", sub.subName);
                filePost.addParameter("serverName", sub.getServerName());
                File file = new File("C:/dataFile.zip");
                filePost.addParameter(file.getName(), file);
                int code = client.executeMethod(filePost);

  • Sub: How to send idoc for IW31.

    Dear All,
    Content: My requirement is to send the idoc for maintanance order- IW31. I found the message type as IORDER. I am not able to use change pointer  IORDER is not matching, as i am not able to find the message type, when executing BD21 (for change pointer).
    Please let me know the procedure for sending idoc for IW31.

    This is what it worked for me, to create an INBOUND IDOC to transaction IW31:
    I converted BAPI_ALM_ORDER_MAINTAIN to an IDOC
    1) In transaction SWO1 copy model BUS2007A to ZBUS2007A (make sure set the status to implemented Edit->Change Release Status->Object type -> to implemented.
    2)In transaction BDBG, check Object type, Object ZBUS2007A, Method ORDERMAINTAIN
    you can check
    http://help.sap.com/saphelp_nw04/helpdata/en/78/21740f51ce11d189570000e829fbbd/content.htm
    I Put in Message type ZORDERMAIN
    IDoc Type ZORDERMAIN01
    the function name will be: ZIDOC_INPUT_ZORDERMAIN
    3) configure transaction BD51
    4) Configure transaction WE57
    5) Configure transaction WE42
    6) and Finally Transaction WE20
    In my case it worked, still I modified function ZIDOC_INPUT_ZORDERMAIN, and in  the call function to BAPI_ALM_ORDER_MAINTAIN I  commented the releationship tables.(They were giving me some errors)
    Hope this info will help someone.
    Regards

  • Q10 not sending gmail for small businesses

    Hi,
    I have a Q10 with both a normal gmail account and one for small businesses (using my own domain name). The domain name address however has stopped sending emails. It still recieves them but sent emails are not recieved by the reciepitants. Please could you help - I have checked the settings and they are all as they should be.

    Hi and Welcome to the Community!
    With a strong carrier network signal (e.g., not merely WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive to your Messages app
    2) Delete and Resend Service Books (pre-BB10 devices only)
    KB05000Delete the service book for the BlackBerry Internet Service email account from the BlackBerry smartphone
    If you have no CMIME entry, then skip the deletion
    KB02830 Send the service books for the BlackBerry Internet Service
    Please wait for "Activation" Messages, one per already configured email account, to arrive in your Messages. If you have no already configured email accounts, please wait 1 hour.
    3) Reboot
    Pre-BB10 Devices ONLY. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.
    BB10 Devices. Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. IF this fails, you can attempt the battery-pull method above, but it is normally NOT recommended unless nothing else works.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should try deleting and re-adding your configurations for the affected email accounts. Otherwise, you should contact your mobile service provider for formal support.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to send in for logic board / HD repair?

    Not long before my trial AppleCare expired, my MacBook Pro started doing very strange things, freezing, crashing, making grinding noises, etc. After reporting the results of Disk Utility and a hardware scan to AppleCare, they gave me a case number and said that I most likely needed both a logic board replacement and a hard drive replacement, and that if I had further trouble, to take it in for repair.
    Well, the local Apple Store's Genius Bar has been entirely booked up for two days now, and as my AppleCare trial has expired (though I'm under warrantee), I can't call Apple about it.
    Can I simply walk in and drop it off? Do I mail it to Apple myself? I've never had to send a machine in to Apple, but it's seemingly not as straightforward as I thought.... how long might I expect my turnaround time to be?
    MacBook Pro, 2Ghz   Mac OS X (10.4.7) {dying fast}

    ... as my AppleCare trial has expired (though I'm under warrantee), I can't call Apple about it.
    There's really nothing "trial" about it, although I can see how it could be perceived that way. What expired was your 90 days of free phone support for any issue with your MBP, but since, as you know, you still have a one year hardware warranty, you still have free phone support for warranted hardware issues.
    See Is phone support and warranty service free? for details.
    As Kappy indicates, it's a very straightforward process. If Apple determines that you do have a hardware defect, they'll arrange for a shipper to drop off a shipping box and take it away when you've packed your MBP, and then they'll ship it back to your door when the repair is complete.

  • How to send 997 for a partner documents to multiple IDs?

    We are using EDI X12, and we are facing a challenge to send 997's to different IDs based on transaction type. The partner in this case sends documents to us from different ISA/GS IDs for different document types, so we are required to send 997s to the respective ISA/GS ID.
    In B2B agreements we can't define more than one agreement with the same document type so we are restricted to only one ISA/GS ID for all the documents acknowledgements.
    One other option I thought of was to defer the acknowledgements and let SOA composite handle it, but again as we can't specify the ISA/GS ID in the message header, we will be restricted to only one ISA/GS id which is again an issue.
    Does anyone have any ideas on how to achive this?
    Thanks
    Venkat

    Hi Venkat,
    If you are using 11g, please set the "Functional Ack internal properties" to true in Administration -> configuration screen
    If 10g, please set oracle.tip.b2b.edi.FAInternalProperties to true
    Regards,
    Dheeraj

  • How to send Equipment for repair

    Hi,
    i want to send a machine or euipment for repairing.how to do it..iam having inventory and purchase,finance modules..pl provide solution
    regards,
    venkat

    You might need the service module other wise you have to create a custom solution with the existing modules.
    Srini C

  • How to send invitation for meeting using calendar

    How can I send an invitation for a meeting using Calender? (Is there a similar way as in Outlook?)

    Hi joss23,
    Welcome to the Support Communities!
    The information below may be able to answer your questions about sending invitations using Calendar on your Mac:
    Calendar (Mavericks): Invite people to events
    http://support.apple.com/kb/PH14974
    Calendar (Mavericks): Invite people using the Address panel
    http://support.apple.com/kb/PH14992
    This is how you would do it at the www.icloud.com website:
    iCloud: Invite people to an event
    http://support.apple.com/kb/PH2682
    Cheers,
    - Judy

  • How to Send Emails for failed messages without using Alert

    Hi Experts,
    In our project, we need to trigger Emails for the failed messages in SXMB_MONI / Adapter Engine without using Alert Framewrok.
    Please let me know the below :
    1. Is this really possible to avoid Alert?
    2. If possible, then can we accomplish this by creating any PI Scenario? Please provide me some knowledge.
    3. Can we do it by writing any ABAP Code? If ABAP report can make it, then please provide me the code/ tables which will be needed. If any Blog/ Wiki is there, then please let me know the URLs. 
    Thanks,
    Nabendu.

    Hi Nabendu,
       If your customer asks for mails with specific text for message failure, tell that it is not possible. Because Message will go through several engines like Adapter Engine, Integration Engine, BPE. You can not generate mails for the message failures in all these areas with out standard alert mechanism. These are pure technical alerts which only PI people can understand, not business alerts.
    Example: assume your sender channel is unable to connect FTP Server, in this case you can not generate even though you will develop adapter module to generate alerts.
                            So for message validation only you can send mails not for message failures.
    thanks,
    madhu

  • How to send key for unicode characters?

    Hi Gurus,
    I want to send an unicode character to screen, but can't figure out a way to do so. In java, we can send a virtual key code using java.awt.event.KeyEvent. But how can I send a unicode character to the screen? Must I implement an input method? how to do that....?
    Anyone can give me some ideas?
    Thanks,
    Perky

    Found tha answer myself: set System.useCodePage to false

  • Why all of a sudden am I having difficulty sending Gmail emails? I get a send error. When I run diagnostics there is a SMTP and IMAP account for Gmail and I am not sure how to fix this.

    Why all of a sudden am I having difficulty sending Gmail emails? I get a send error. When I run diagnostics there is a SMTP and IMAP account for Gmail and I am not sure how to fix this.

    Hi jodilynnf,
    When using Connection Doctor to see what is could be causing the issue, look for the red dots to let you know what is wrong. Then all you have to do is correct that information. You can double click on the section that is giving you issue and it will take you there. Most issues could be just password being entered incorrectly. Take a look at the article below to walk you through troubleshooting issues with Mail.
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/en-us/TS3276
     Take it easy,
    -Norm G.

  • How best do I leave Gmail for Mail?

    I've decided I want to take the plunge and leave Gmail for Mail, using my iCloud account. Why? I've lost trust in Google (incl. their search bias, how they handle my privacy, and how they treat the end-user as a comodity to sell rather than a customer to serve). I'd love advice on the best way to swap over. I've done a bit of researching and can't seem to nail the answers to my questions. Your help + advice on any of the items below would be much appreciated. And if you think there's a better way I should be asking the question, please let me know.
    Here's what I'm looking for especially:
    I use Gmail's labels a lot. What's the best way to get the same effect in Mail? Smart folders? (I do wish smart folders synced to iCloud.)
    I have a lot of Gmail labels. What's the best way to export from Gmail without getting oodles of duplicates? Forwarding folder by folder would be time consuming + lossy, and stripping the labels would be counterproductive. Are those my only options?
    I use a lot of Gmail filters. Mail rules seem even better, but is there any way to automate transfering the filters to Mail?
    I use Gmail 'send mail as' with a collection of non-gmail addresses (from my domains). Is there any way to use my iCloud account to send from a non-iCloud address? Or, is my only option to sign up with a different webmail service in order to send from my alternate addresses in Mail? 
    I have my own set of pre-defined Gmail keyboard shortcuts. Do I just need to tough it out and learn the Mail shortcuts, or is there a good, free/inexpensive app for adding shortcuts to Mail? And no, I don't mean through SysPrefs (I know how to do that ). I mean Gmail style single-letter shortcuts, like 'r' for reply.
    Tips for converting Gmail Contacts to Address Book.
    If you've made the switch, I'd also be interested to hear your experience! I'd really like to get Mail up and running sooner and rid myself of Google.
    Papa Bear

    1: Smart folders won't sync between devices. But you can create regular mailbox folders under the icloud imap folder or at the icloud website which will stay synced.
    2: The best way I see to do the labels is to create the gmail account in Mail. Set it to show those labels in imap in the labels setting section at the gmail website. All your gmail folders will appear under gmail's imap folder in Mail's sidebar. Then you will have options to export or just move the messages from one mailbox to another. I think I would just create a new mailbox under iCloud, then select all the messages from one gmail folder and right click to move the messages to the iCloud folder. Seems it would be the easiest way.
    3: I don't think it is possible to transfer your rules from gmail to Mail. Rules should be very carefully constructed in Mail paying much consideration to the order they are placed. Simplify it as best you can and test it. In Mail, rules only will apply to incoming messages which may be different than what gmail does.
    4: iCloud does not have the option to send other email addresses and retain their identity like gmail does. Best I can say on that is to create the accounts of the other addresses in Mail seperately with their own SMTP servers to send from.
    5: No comment.
    6:You can go to the gmail website and export your contacts.
    Or, open up the AB on the computer and go to preferences. Open the Accounts tab. Select On My Mac in the list and check the box to sync Google contacts. Put your google sign in and password. Your Google contacts should be created on the computer. You can then select all the contacts in google and drag them to iCloud to add them. Once done, deselect the google contact syncing.

  • How to setup gmail push notification for my iphone 5?

    I'm using gmail. Prompt respond for mails is very urgent for me.
    How to setup gmail push notification for my iphone 5?

    I switched from a BB to an iPhone a few days ago and I knew I was going to miss the QWERTY keyboard but then I also discovered that my GMail doesn't 'push' to my iPhone. I was used to 'push' for all mail accounts on the BB. I also missed being able to personalize text, email, and phone tones for individuals.
    I tried the Gmail app for iOS and it does deliver Gmail to the iPhone app quickly but the text is tiny and when it is a web page it's almost impossible to read.
    So, I have worked out a kludge to get around these problems.
    I added my exisiting Gmail account to the iPhone.
    Hotmail does push to iOS 7 so I created a Outlook account (could be hotmail or Live) using the web browser.
    I added the hotmail account to the iPhone. I basically use this to give fast notification of important emails on my iPhone.
    On my macbook email client I created a rule that 'redirects' incoming mail to the hotmail account. The 'Redirect' is important since the email will show up in the hotmail account on the iPhone as coming from the original sender and you can then respond to the original sender from the iPhone, though the sender will see it as coming from the hotmail account.
    The other downside is that you will get a second copy of the email in the gmail inbox on the iPhone, probably 15 minutes later.
    If you don't want all of the mail being redirected you can create a 'redirect' group in the Address book and then adjust the rule in Apple mail to only redirect the mail to the hotmail account if the sender is in the redirect group. You can add and delete contacts from this group depending upon which ones you consider to be important. You will still get two copies of the email on the iPhone, one in the hotmail inbox and one in the gmail inbox.
    You can prevent this from happening temporarily by turning off, but not deleting, the gmail account on the iPhone. You could then edit the emails on the Apple email client before turning the gmail back on in the iPhone.
    And finally if you use the VIP feature in email on the iPhone you can create a list of VIP contacts and then assign a different notification sound for the VIP's. So in effect important contacts mail will be redirect to the iPhone for quick notification and very, very important contacts will have a different notification sound.
    I'm basically using the Hotmail account as a notification  tool and basically delete all the emails in it since the original copy will be in the gmail account.
    And best of all it's all free, except for the bandwidth.

Maybe you are looking for