Can't send from some locations

Sending email from home is no problem, but it refuses to send from public wifi networks at city hall and the library. The librarian tells me that all internet functions, including email, should work fine.
I get a message saying I should try enabling other SMTP servers, but I've only got the one from Gmail.
Any ideas?

The Advanced tab has Incoming Settings for SSL (which is on) and the server port (993). But I'm not sure how this would affect sending. (Let me know if I'm looking in the wrong place.)
I went back to the library to experiment further, and found that I could send mail if I used Safari to access the Gmail website. The workaround, then, is to created a bookmark for it on the home page.
It's baffling that I couldn't do the same from the Mail app, because in both cases I would be using the smtp.gmail.com server.

Similar Messages

  • Can any send me some docs on BAPI.

    Can any send me some docs on BAPI. If possible please send the docs on ID :- [email protected]
    Edited by: dilip kushwah on Dec 31, 2007 12:32 AM

    Hi Dilip
    I am sending you some material on BAPI, pls go thru it.
    Pls reward pts if help.
    Regards
    Deepanker
    what is BAPI?
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    just refer to the link below
    http://www.sapmaterial.com/?gclid=CN322K28t4sCFQ-WbgodSGbK2g
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    Example Code
    U need to give the step_nr, item_nr, cond_count and cond_type so the correct conditon will be updated. If no condition exists for the given parameters, a new condition will be created.
    U can find these parameters for a particular condition type in table KONV.
    *& Form saveTransactionJOCR
    text
    --> p1 text
    <-- p2 text
    FORM saveTransactionJOCR .
    data: salesdocument like BAPIVBELN-VBELN,
    order_header_inx like bapisdh1x,
    order_header_in like bapisdh1,
    return type standard table of bapiret2 with header line,
    conditions_in type standard table of bapicond with header line,
    conditions_inx type standard table of bapicondx with header line,
    logic_switch like BAPISDLS,
    step_nr like conditions_in-cond_st_no,
    item_nr like conditions_in-itm_number,
    cond_count like conditions_in-cond_count,
    cond_type like conditions_in-cond_type.
    salesdocument = wa_order_information-VBELN.
    LOGIC_SWITCH-COND_HANDL = 'X'.
    order_header_inx-updateflag = 'U'.
    conditions
    clear conditions_in[].
    clear conditions_inx[].
    clear: step_nr,
    item_nr,
    cond_count,
    cond_type.
    step_nr = '710'.
    item_nr = '000000'.
    cond_count = '01'.
    cond_type = 'ZCP2'.
    CONDITIONS_IN-ITM_NUMBER = item_nr.
    conditions_in-cond_st_no = step_nr.
    CONDITIONS_IN-COND_COUNT = cond_count.
    CONDITIONS_IN-COND_TYPE = cond_type.
    CONDITIONS_IN-COND_VALUE = 666.
    CONDITIONS_IN-CURRENCY = 'EUR'.
    append conditions_in.
    CONDITIONS_INX-ITM_NUMBER = item_nr.
    conditions_inx-cond_st_no = step_nr.
    CONDITIONS_INX-COND_COUNT = cond_count.
    CONDITIONS_INX-COND_TYPE = cond_type.
    CONDITIONS_INX-UPDATEFLAG = 'U'.
    CONDITIONS_INX-COND_VALUE = 'X'.
    CONDITIONS_INX-CURRENCY = 'X'.
    append conditions_inx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    SALESDOCUMENT = salesdocument
    ORDER_HEADER_IN = order_header_in
    ORDER_HEADER_INX = order_header_inx
    LOGIC_SWITCH = logic_switch
    TABLES
    RETURN = return
    CONDITIONS_IN = conditions_in
    CONDITIONS_INX = conditions_inx
    if return-type ne 'E'.
    commit work and wait.
    endif.
    ENDFORM. " saveTransactionJOCR
    Bdc to Bapi
    The steps to be followed are :
    1. Find out the relevant BAPI (BAPI_SALESORDER_CHANGE for VA02).
    [for VA01 use BAPI_SALESORDER_CREATEFROMDAT2]
    2. Create a Z program and call the BAPi (same as a Funtion module call).
    2. Now, if you see this BAPi, it has
    -> Importing structures.
    eg: SALESDOCUMENT: this will take the Sales order header data as input.
    -> Tables parameters:
    eg: ORDER_ITEM_IN: this will take the line item data as input.
    Note :
    Only specify fields that should be changed
    Select these fields by entering an X in the checkboxes
    Enter a U in the UPDATEFLAG field
    Always specify key fields when changing the data, including in the checkboxes
    The configuration is an exception here. If this needs to be changed, you need to complete it again fully.
    Maintain quantities and dates in the schedule line data
    Possible UPDATEFLAGS:
    U = change
    D = delete
    I = add
    Example
    1. Delete the whole order
    2. Delete order items
    3. Change the order
    4. Change the configuration
    Notes
    1. Minimum entry:
    You must enter the order number in the SALESDOCUMENT structure.
    You must always enter key fields for changes.
    You must always specify the update indicator in the ORDER_HEADER_INX.
    2. Commit control:
    The BAPI does not run a database Commit, which means that the application must trigger the Commit so that the changes are read to the database. To do this, use the BAPI_TRANSACTION_COMMIT BAPI.
    For further details... refer to the Function Module documentation for the BAPi.
    Bapi to VB(Visual Basic)
    Long back I had used the following flow structure to acheive the same.
    Report -> SM59 RFC destination -> COM4ABAP -> VB.exe
    my report uses the rfc destination to create a COM session with com4abap. com4abap calls the vb.exe and manages the flow of data between sap and vb exe.
    You need to have com4abap.exe
    If com4abap is installed you will find it in sapgui installatin directory , C:\Program Files\SAPpc\sapgui\RFCSDK\com4abap.
    else refer OSS note 419822 for installation of com4abap
    after making the settings in com4abap to point to the vb program and setting up rfc destination in sm59 to point to com4abap session , you can use the following function modules to call the vb code.
    for setting up com4abap and rfc destination please refer to the documentation for com4abap.
    Invoke NEW DCOM session
    call function 'BEGIN_COM_SESSION'
    exporting
    service_dest = service_dest "(this will be a RFC destination created in SM59)
    importing
    worker_dest = worker_dest
    exceptions
    connect_to_dcom_service_failed = 1
    connect_to_dcom_worker_failed = 2
    others = 3.
    call function 'create_com_instance' destination worker_dest
    exporting
    clsid = g_c_clsid
    typelib = g_c_typelib
    importing
    instid = g_f_oid
    exceptions
    communication_failure = 1 message g_f_msg
    system_failure = 2 message g_f_msg
    invalid_instance_id = 3
    others = 4.
    call function 'com_invoke' destination worker_dest
    exporting
    %instid = g_f_oid
    %method = 'UpdatePDF'
    sntemp = g_v_const_filent
    snsysid = sy-sysid
    snflag = 'N'
    tables
    rssaptable = g_t_pdfdetail1
    %return = g_t_pdfdetail1 "t_test
    exceptions
    communication_failure = 1 message g_f_msg
    system_failure = 2 message g_f_msg
    invalid_instance_id = 3
    others = 4.
    then close the com session , using
    FM delete_com_instance
    FM END_COM_SESSION
    Reward pts if help.
    regards
    Deepanker

  • I have an imac with IMAP email. have managed to partially sync up my ipad in that I can receive the same emails that appear on my imac but I can't send from my ipad.  Any ideas?

    I have an imac with IMAP email. have managed to partially sync up my ipad with it in that I can receive the same emails that appear on my imac but I can't send from my ipad.  Any ideas?

    That sounds like a settings issue to me. Check with your IT depatment to make sure you have it configured properly.

  • HT1146 I can not get my mail to send on my mac. It has been fine until about 2 hours ago, incoming mails are fine. I have jused all of my 3 accounts and I can't send from any og them (they are all on different servers) anyone have nay ideas on how I can f

    I can not get my mail to send on my mac. It has been fine until about 2 hours ago, incoming mails are fine. I have jused all of my 3 accounts and I can't send from any og them (they are all on different servers) anyone have nay ideas on how I can fix this?

    Jailbreaking violates the Apple warranty and licensing agreement and voids ALL support from Apple.  No one on here can help you as doing so is a violation of the Terms of Use of these Communities.  If you send the iPad to Apple they will just send it back to you as they are not permitted to work on a machine that has been jailbroken.

  • Can retrieve users from some sub OUs and from other sub OUs cann't

    hi,
    I am using Windows 2003 Active Directory Server and Jndi to access that in my application. I am using follwing code to retrieve all Users from a aprticular OU.
    ctx = new InitialDirContext(environment);
    SearchControls ctls = new SearchControls();
    ctls.setSearchScope(2);
    String attrs[] = {
    "sn", "givenName", "userPrincipalName"
    ctls.setReturningAttributes(attrs);
    String filter = "(&(objectClass=*))";
    String serachCriteria[] = {"User Container", "Admin Leads,OU=Administration,OU=User Container"};
    for(int i = 0; i < serachCriteria.length; i++)
    StringBuffer searchString = new StringBuffer("OU=");
    searchString.append(serachCriteria);
    searchString.append(",DC=india,DC=mycompany,DC=com");
    for(NamingEnumeration answer = ctx.search(searchString.toString(), filter, ctls); answer.hasMoreElements();)
    SearchResult searchResult = (SearchResult)answer.next();
    ....................and so on
    as can be observed in the bold text above, I have to specify the path of sub OU to retrieve users under that. Whereas apart from this sub OU, it is retrieving users from others sub OUs. The problem is, the code can access users from some OUs but not from other sub OUs
    Can anybody help?
    regards,
    Zaid

    Active Directory has a very rich access control model.
    Perhaps it may not have occurred to you, that you do not have list access rights to the child3 & child9 organizational units ?
    You may have access rights to all the leaf objects contained in child3 & child9, which explains why you can retrieve all the leaf objects when you explicitly bind to them, however you may not have list access rights to child3 & child9 which explains why you can't bind to it when iterating through parent1.
    What happens if you simply perform a one level search on parent1, using a filter (objectClass=organizationalUnit) ?
    If it doesn't retrieve child3 & child9, then perhaps you do not have list access rights for those two ou's.

  • Can anyone send me some docs about dimension analysis?

    hi all
    Can anyone send me some docs about dimension analysis. What factors should be considered before dimension are created and stuff like that.
    to my email id [email protected]
    regds
    hari

    hi all
    Can anyone send me some docs about dimension analysis. What factors should be considered before dimension are created and stuff like that.
    to my email id [email protected].
    regds
    hari

  • HT1277 i have all the correct settings for my e mail but i can't send for some reason it keeps taking my outgoing server offline

    i have all the correct settings for my e mail but i can't send for some reason it keeps taking my outgoing server offline can anyone help

    If you can receive mail and your connection to your ISP is otherwise working, but cannot send mail, then your SMTP settings are incorrect; the SMTP server port is wrong, your SSL setting is wrong, or the username or password credentials don't match what the ISP has, or your attempted accesses are being blocked or your ISP SMTP server is offline.
    And in general, don't use port 25 for your outbound mail, unless your ISP specifically requires that; these days, that port is best left to communications between mail servers and (usually) not used by any mail clients.

  • How can I send from multiple email aliases & names?

    Hi, I wish to achieve the same result as the OP at http://forums.macrumors.com/showthread.php?t=112689 and by following the useful guides in that thread, am able to achieve what I want... sort of.
    Basically, I have one POP account/mailbox, and only one.
    However, I use 3 email aliases for different work purposes, e.g.:
    Fred Blogs <[email protected]>
    Dr F Blogs <[email protected]>
    The Surgery <[email protected]>
    Now, according to the advice, in Mail I can create one Mailbox, and under 'email address' in Mailbox Preferences, enter:
    [email protected], [email protected], [email protected]
    This works fine as far as it goes, and I get a drop down when creating new mail, however, all 3 'aliases' come from the same person's 'Name' - the 1 name I entered in the mailbox preferences in Mail.
    No, what I need to achieve is to be able to send email from the 3 different names as well as email addresses, not just 3 different email addresses all with the same name.
    This was a doddle under Outlook, you just create 3 accounts with the same SMTP server, but set 2 of them not to receive email (otherwise you'd end up with 3 lots of each incoming email from that 1 shared mailbox).
    Mail however is not having any of it, and won't let me create duplicate accounts. I have even tried adding the full name in the email address field of settings, separated by commas: Fred Blogs <[email protected]>, Dr F Blogs <[email protected]>, The Surgery <[email protected]>. That didn't work either.
    How can I achieve what used to be quite a simple process on my PC? I can't be the only person who uses one unified mailbox account, but sends from different aliases?
    Thanks.

    Thanks, but the issue occurs when I am trying to set up the 2nd account and get to the Incoming Mail Server Page.
    Because I am using the same Incoming Mail Server and User Name as the 1st account, when I click Continue it reports:
    /!\ The account "Account 1" already has this hostname and username.
    It then won't let me continue. Now it sounds like you have the same setup, so do you have the same hostname and username in all your multiple accounts? :-S
    The reason it does this is - I suspect - because even if you untick 'Include when automatically checking for new mail', when you manually check for new mail, you'd still get 3 lots of the same message. How do you get around this?

  • How can I send from a disposable email address?

    I use Abine to protect my identity, and I often create disposable email addresses for websites to contact me. Occasionally I want to send an email to a company or individual but I don't want them to have my real email address (think Craigslist). But when I write an email, I'm only able to send From the "registered" email accounts in TB. Is there a way to change the "From:" to a disposable address? I have tried numerous times to create an account using a disposable address but I'm never able to succeed. Interestingly, I used to be able to do this many many TB versions ago, I don't know which one, but now I can't.
    Can anyone tell me how to accomplish this? This is an important privacy concern and I'm surprised Mozilla hasn't considered this.
    Thanks in advance for any help.

    I should have mentioned that I'm using TB 31.0 on a MAC running 10.9.4.

  • Can't print from some sites visited with Firefox, but can print from same sites visited from IE.

    From IE I can print emails from my Google email but not from Firefox. For some reason Firefox keeps changing my print settings and that prevents printing unless I manually change them back. Also I have had trouble printing from dailysudoku.com. I am running Windows 7 Home Edition on an HP laptop. I tried uninstalling Firefox and then reinstalling, but that didn't solve the problem.

    No. This didn't work. And when I went to about:config I received a warning message that I might void the warranty if went there. And I should go there only if I knew what I was doing. If followed the instructions very carefully and reset the print settings as you suggested. I also got the following message:
    Some users may need to reset all the print.printer preferences for a particular printer, if resetting this one master preference doesn't solve the problem.
    Will I need to try to reset some of the other print.printer preferences besides print.printer_print? I'm a little nervous about doing something that could void my warranty if I don't know exactly what I'm doing.

  • Can anybody send me some docs on ESS/MSS and Adobe Forms.

    Hi all,
    Can anybody please send me some doc/materials/link on how to coonfigure/develop/work with ESS/MSS and Adobe forms.
    Its very urgent requirement.
    Thanks n Regards
    A.M.Rao

    For ERP 2005 check out
    hi ,
    for ess..
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CAESS/ESSIAC.pdf
    Personnel Admin.http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/0fab358b096510e10000009b38f839/frameset.htm
    Training & Event management
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/44/2bc9367a23fb68e10000009b38f889/frameset.htm
    Personnel Development
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/cf/5e9b38f8236e6de10000009b38f842/frameset.htm
    ESS - http://help.sap.com/saphelp_erp2005vp/helpdata/en/5b/76a6d7fd3a4e91bfb422405bf3e04d/frameset.htm
    MSS - http://help.sap.com/saphelp_erp2005vp/helpdata/en/29/d7844205625551e10000000a1550b0/frameset.htm
    For ERP 2004
    ESS - http://help.sap.com/saphelp_erp2004/helpdata/en/5b/76a6d7fd3a4e91bfb422405bf3e04d/frameset.htm
    MSS - http://help.sap.com/saphelp_erp2004/helpdata/en/0a/8b3b40b1607a56e10000000a1550b0/frameset.htm
    Also if you have S User ID on SAP Service Marketplace, check out https://service.sap.com/mss-staging for MSS.
    regards,
    venkat.

  • Sms can't send from nokia 6120c

    help me that from my cell sms can't send.
    i have nohia 6120c.
    kindly reply

    Check this link.. /discussions/board/message?board.id=topfaq&thread.​id=115 it will help your to solve your problem.
    If you like my post then give me "Kudos" star...

  • Can't Send From IMAP Mail Accounts

    I set up 4 different email accounts within Mail. The send button is grey'd out on the 3 IMAP style account setups. Send is only active when I choose to send from the Gmail outgoing server. How can I fix this while still using the IMAP style which enables my Push with my new iPhone to work?
    Thanks!

    Okay, so I have yet to solve this. Here's what's happening now.
    All of my 4 email account are set up as IMAP but now I'm only receiving gmail on my iPhone and I'm not seeing any new mail from the other IMAP accounts on iPhone. What the heck?
    Anybody?

  • Can't send from Gmail on office wifi - iOS 7

    I as well as the rest of my office have been unable to send emails from Gmail accounts on iOS 7 devices. iOS 6 devices send, but slowly. Shut off wifi and send via wireless data works just fine. Sending from home wifi works just fine. According to mail setttings, doesn't appear to be a port switch but unsure how to instruct the IT dude on anything on the wirewall that may need to be adjusted. Any thoughts?

    STMP is being blocked on the network. There's really not much we can do about that.
    You can use your 3G connection to get messages out
    Use Gmail online
    Wait until lunch/breaks to send email?
    Talk to IT and ask about sending mail/SMTP connections.

  • MobilMe issue.... can't send from, but do receive with!?

    me and a friend both have the same issue. whats the deal? Seems like it should be a clean working thing since it's the iphone/mac's own product...?? Help! Receive fine, but can't send.

    Did you select the "sync email accounts" option?
    When I first got my iPhone I had configured it to check my .Mac email. Later when I was reviewing all of the sync settings I checked that box in iTunes. It sync'd the "settings" from my mail account on my computer, which has the SMTP server of my ISP, and as such when I tried to send an email from my iPhone the next day it didn't work. I had to UN-check that box and re-setup the email server on the iPhone.
    Could this be part of your problem?

Maybe you are looking for

  • ESS US ADDRESS IVIEW NOT SHOWING ALL OVERVIEW FIELDS

    NW2004s , EP 7 , MYSAPERP 5.0, ECC 6.0 ESS ADDRESS IVIEW - ( UNDER PERSONNEL INFORMATION ) - The IView is not showing up few key fields in the Overview Part for instance - Name, C/O , State , Zip code fields are missing from the overview part, but wh

  • Oracle 10g Agent goes down itself

    I have been observing the Oracle 10g agent goes down by itself and in grid control it reports as Agent unreachable. where do I see the log why Agent is going down on target everytime.

  • HT4859 How content is restored to a new device after choosing start as new iPhone

    I got a new 3GS that is built with iOS5. The thing is my former 3GS had the iOS6 and hence my recent iCloud backups were done with iOS6. When tried to choose "Restore from iCloud backup" I could only see very old backups (I assume latest iCloud backu

  • How to install J2ME WTK on Linux Mandrake 10.1?

    Hello! I try to install J2ME WTK on to my Linux Mandrake 10.1but it does not work for me. Below is the output after the License agreement. So if you got any ideas please let me know. Best regards Fredrik Do you agree to the above license terms? [yes

  • Error transmitting the request byte stream

    I got error message when I try to store archive file via ixos LEA9.6.0. The message text is "Job started Step 001 started (program RSARCH_STORE_FILE, variant , user name SAWANG) The archive file 000733-001MM_ACCTIT is being processed Error transmitti