Howto access smtp server on-the-go

Typically, I use outgoing.verizon.net as my smtp server for sending mail with my FIOS email address. Is there another server/port I can use to send mail from my verizon account when I'm away from home?

You're meant to use the outgoing mail server supplied by the ISP of the machine you are using.  Using the Verizon outgoing server may work but typically will get rejected for "relaying".  You can use the Verizon webmail interface which will work or the webmail interface for the isp who handles your mail box or you could get a free gmail account that supplies you with a gmail smtp server that always appears to work.

Similar Messages

  • HT4864 can I use the icloud smtp server as the outgoing server for all my other imap accounts?

    I have several imap accounts. I want to send all my messages using the icloud server. I put the icloud server as the smtp server for each account but mail is not able to send the messages. The configuration is correct for the smtp iclous server, I checked.
    Is there anything I'm missing?
    Fausto

    The only thing you're missing is that you can't do that.  You have to use the correct smtp server for the mail accounts.  Email providers generally don't like sending some other company's mail.    If you want to send from the icloud servers, use your icloud account when composing.

  • Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!! :(

    Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!!

    Hi
    You need to check with your ISP whether or not the send mail server (SMTP) requires a password.  Some do, but many do not.  When you know the correct password to send mail, then you need to tell Mail as follows:
    Mail menu > Preferences > Accounts > Select the account
    Click on the Outgoing Mail Server (SMTP) combo box, and select Edit SMTP Server List...
    In the Account Information tab put the server name
    In the Advanced Tab, set up the authentication information from your ISP.
    Good luck
    Bob

  • Accessing a server via the Server app from outside a router firewall

    So I'm trying to access my server using the Server app on a MacBook Pro outside my server network.  I can access it just fine when my client is inside the server network, but I cannot connect when outside the server network.
    I've done the following troubleshooting:
    - I've turned off the server Firewall option available in the server's Server Admin tool
    - I've set up port forwarding on my router
    - I've opened up port 311 on the router
    - I've placed the server outside the router DMZ zone and the Server app connects just fine
    - I've checked the box "Allow remote administration using Server" in the server's Server app Settings tab
    - With the router configured correctly, the Server app cannot access the server
    There's something in the router that is blocking access by the Server app.  Apple Enterprise support says they are sure there is no other port to open up.  Is there something else I should be doing to access the server from outside the router using a client Server app?
    TIA
    ps - this worked fine when I just had the server hanging directly off a cable modem.

    I and I suspect a lot of other admins would argue you should not be making your server accessible via Server.app remotely due to security concerns. Saying that, I and again I suspect a lot of other admins also want/need to be able to remotely administer servers. There is a better way however to achieve this.
    You should be running a VPN server, perhaps using your same Mac server. You should leave the firewall blocking access directly for Server.app but if your remote Mac first connects via the VPN it will then be connected securely to your internal network and then be able to use Server.app

  • HT2480 In the server domain; Do I use the smtp server OR the incoming mail server?

    I am trying to verify my business mail on my iphone and I have several troubles thus I would like to ask for you help:
    1) its a "webmail.ath.hcmr.gr" mail, so it is a "Microsoft Exchange" mail type? Correct?
    2) in the server field: what do i add? The incoming mail server or the smtp server?
    Thanks

    Hey Butterworth,
    You may need to use the information in this article to help you troubleshoot the issue with your outgoing server:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • Can't access FTP server OR the SITE!

    I installed dreamweaver and succesfully mapped it to my FTP server. I was in the middle of a sync between my remote and local folders when the connection was dropped! It would not reconnect, I found out a few minutes later that I could not even access the web page itself, or the hosting server, of the ftp directory. NOTHING! However, my roommate can access all of the fine from his PC. I am a new MAC user and was wondering if there was some bandwidth limit I have exceeded or something. I turned the firewall off and everything! AHHH. I'm losing my mind here. Someone pleasse tell how to fix this.

    Problem solved. The issue was the FTP Client I was using *****. It opened over 50 simultaneous connections with the server and the server firewall blocked my IP.

  • Can't Access my server from the Server App

    Upgraded to Lion Server, everything seemed to go OK.  Now, for some reason, I can't access the settings from the Server app.  It asks for a passowrd, and it won't take it.  I can reboot the server, log in just fine.  But entering in my username and passowrd in the Server app, no dice.
    Thoughts???

    Got it.  This thread helped!
    Thanks!
    https://discussions.apple.com/thread/3193444?tstart=60

  • Access SMTP Server Messages & Responses

    I have the need to be able to send an email and a fax (via smtp) to two different servers. I've got the email portion set up, but I'm having trouble with the fax. The problem is that the RCPT TO: and the To: portion in the DATA: sections need to be different. I need to be able to see what I'm sending to the server and what the response I get back from the server on each individual line. Is this possible with JavaMail?
    Example (first line = message sent to server, second line = server response):
    This information was obtained by rolling my own smtp mail app. Please notice the differences between RCPT TO: and To:
    =>HELO
    =>250 sbfax001.stars-net.com Hello [12.28.86.153]
    =>MAIL FROM: [email protected]
    =>250 2.1.0 [email protected]...Sender OK
    =>RCPT TO: "FAX=/NUM=1-806-345-2713/NAME=Wil Caetano/FROM=Kenan Dalley"@sbfax001.stars-net.com
    =>250 2.1.5 "FAX=/NUM=1-806-345-2713/NAME=Wil Caetano/FROM=Kenan Dalley"@sbfax001.stars-net.com
    =>DATA
    =>354 Start mail input; end with <CRLF>.<CRLF>
    =>From: Kenan Dalley <[email protected]>
    To: Wil Caetano <[email protected]>
    Subject: Test subject
    Mime-Version: 1.0
    ...(etc)...
    =>250 2.6.0 <[email protected]> Queued mail for delivery
    =>QUIT
    =>221 2.0.0 sbfax001.stars-net.com Service closing transmission channel

    Ok. I see the getDebug(true) [and with 1.3.0 getDebugOut(InputStream)] to be able to see the messages to and from the server. I guess my remaining question is: Can I set the RCPT TO different from the To: in the DATA section with JavaMail?

  • Mail SMTP-server changing the port by itself!

    Hi!
    My mail app keeps changing the smtp port from 25 to 547! I dont know how i can fix this..! It happens even though i havent put my macbook pro to sleep, over intervals of a couple of hours. Ive assigned mail to use a custom port 25 because for some reason it doesnt use port 25 when assigned to "Use default ports"..
    Any ideas of how to fix? Couldnt find any case like it on the interwebs.. :/
    -Tormod

    Hi!
    I have my own domain, so port 25 works for that mailaccount, none of the others..

  • TS4002 In my SMTP server settings, the incoming mail server window is dim and inactive, is this why I'm not receiving mail? What can I do to fix?

    Can't receive any mail, I've been using this email address for years. Did a shut down and restart. Went into mail preferences and noticed that the incoming mail server window is dim and inactive. What's going on??

    Thanks I think that's the solution.  But I've always thought it should just come as an SMS

  • Can I change the smtp server with Yahoo push account?

    My yahoo email account will send and receive over EDGE using the default yahoo mail settings. On my home Cox internet WiFi network I can retrieve messages but cannot send. When sending it says it was sent and makes the "swooshing" mail sent sound, but the message disappears. It does not appear in the "sent" folder or "drafts" folder either. No error message is returned.
    I suspect this is related to Cox blocking the smtp server, but the iPhone does not allow me to change the smtp settings on the default yahoo account. Does anyone know how to do this? I can set it up manually for POP access, but then I'm flooded with spam.

    No, you cannot change the SMTP server on the Yahoo push account.
    Yahoo push only works if you configure your account using the Yahoo! Mail shortcut on the iPhone, and that shortcut does not allow for ANY customization.

  • What is the AT&T smtp server for? The SSL is set to "off"

    I was looking around at my Mail settings on my iPhone and noticed there's an AT&T smtp server window. You access it my Settings/Mail Contacts Cal/one of your email accounts/SMTP server/. At the top is the smtp server for your email address which is on, and below are smtp server panes for your other email accounts which are set to off. But one of those smtp server panes is for the AT&T smtp. For what function is it used for? It's vreyed out but SSL set to OFF for the AT&T smtp and the Yahoo smtp, but all the other smtp's are set to ON for SSL.
    Isn't it better for the Secure Sockets Layer (SSL) to be on? Why is Yahoo's and AT&T's set to OFF. I can't find where to access a non-greyed out AT&T's smtp window pane.

    Allan Sampson wrote:
    when sending/receiving via AT&T's cellular network, all data is encrypted over the network, which is a GSM standard.
    Note that in the USA a weaker version of the GSM encryption is used than in Europe.
    http://www.gsm-security.net/faq/gsm-encryption-algorithm-a5-cipher.shtml
    Also, the GSM encryption has been broken a long time ago, but someone whould have to sit between the phone and the basestation to capture and decode the traffic (or they must have access to the network operator's, so called, Legal Intercept interface).
    http://www.gsm-security.net/faq/gsm-a5-broken-security.shtml
    And, AFAIK, the GSM encryption is only in use on the wireless connection between the device and the basestation it is connected to (not on the operator's backbone network, and not when the traffic exits the operator's network and goes to the Internet outside, which it must, in order to get to SMTP servers not in the operator's machine rooms).
    And a last point: Even if you use SSL/TLS between the client and the SMTP server, it is not necessarily used from the SMTP server to the receiving email server (which might mean that the message travels through tens of systems unencrypted until it reaches its destination).

  • I have multiple accounts using the same smtp server, I can only reply with one as the settings wont allow me 2 servers

    I have tried to set my email to reply from my iphone 5 both of which use the same SMTP server. I can't change the settings on the others as it will only allow one mail account. Can I add multiple  with the same smtp?

    I Am not using gmail I use seperate company for my mails both use the same smtp server. The problem is when I set my first account it them uses these details and passwords when I create the second account saying that the smtp server is already in use by the primary account. I therefor can't set the password.

  • How to find out about the SMTP Server

    Hi,
    I have been trying to configure groupware in the portal - in particular I want to enable the sending of emails through the portal. I already have a how-to-guide that that seems to explain the steps quite well. However, it mentions that I need to know the SMTP Server of the email. Can you tell me how to find out about the SMTP Server? Where do I need to look for the name of it?
    Thank you and regards,
    Katharina

    Hi Katharina,
    you need the SMTP server of your company. This means you can't look for it in the portal, but have to ask the responsible person in your company.
    Kind regards,
    dominik

  • How to setup the SMTP server in Oracle apps?

    Hi,
    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    Thanks,
    Bijoy
    Edited by: user12070886 on Feb 6, 2013 4:26 AM
    Edited by: user12070886 on Feb 6, 2013 4:27 AM

    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? No, it is not mandatory. Also please note that the mails are sent out from concurrent manager mode. Not from the database node.
    Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    >
    It depends on the operating system you are using. If you are using *nix then sendmail needs to be configured.
    Thanks

Maybe you are looking for

  • How can I see past events in iCal 5.0?

    I use iCal to schedule jobs for customers and it does not let me see any events in the past when I use the search.  Is there a setting or something?  I can scroll back and see them but I can't search for them. Lion 10.7 iCal 5.0

  • Cin pricing condition types

    hi gurus, I am working cin ecc 6.0 .  unfortunately standard condtion types are not there.  But i need to maintain the conditon types that related excise duties.  what are the conditon types i have to use.  Whic tax procedure should i use taxinn or t

  • Invoice Split on line items

    Dear all, We are on CRM 7.0. We are doing billing in crm for service products . We have a requirement that if the number of line items in the invoice is more than 200, invoice split should happen. Has anyone worked on this scenario and if so pl. let

  • Unable to update InDesign CC 9.2

    Hello, I'm unable to update InDesign CC 9.2, since the option 'Updates' from Help menu looks disabled. Please advise to update this version in any other way. Thanks in advance, Praveen

  • Srvctl start listener -n rac1 gives CRS-1028 and CRS-0223

    Boot up 2 linux 10.2.0.1.0 RAC nodes. everything starts except listeners srvctl start listener -n rac1 or srvctl start listener -n rac2 gives CRS-1028 CRS-0223 However, if you start listeners manually, using lsnrctl start listener_rac1 or lsnrctl sta