I can send mail...?

I have an 10.7.4 server here at home.
I am trying to setup mail. Mostly for iCal. Since the famialy is sharing a calender.
So far I have a correct DNS setup, an MX record for my no-ip-domain.
From the webmail I can send mail with the calender invite user.
But I cannot receive mail. And thus the iCal invite thingie isnt working either.
The worst part is that when I send a email from my @me.com adress it goes away and no error message what so ever.
Nothing in the logs either. So I am stranded here... no idea what to do.
Any help is appriciated.

Strontium9:Of course.
Camelot:
I know that. Yesterday I finally got an error mail back from @me when I tried to send to my server.
I got some leads in there, the main one being that this:
the mail adress is:
[email protected]
And when I take reply on an message it try to send to:
@zapto.org
Explains alot!
Now I am gonna go deep into Server Admin to see what is wrong here.
Since all hte prefs are set to:
myname.zapto.org

Similar Messages

  • TS3899 Cannot send email from iPhone. Outgoing settings are correct. Checked against iPad setting which are OK and can send mail OK.

    Cannot send email from iPhone. Outgoing settings are correct. Checked them against iPad settings which are OK and can send mail. What can I do?

    For IOS7.02
    The user name and password are in two places. Make  sure they are correct in both locations.
    Settings>>Mail, Contacts, Calendars>>your email>>
    First spot is here under INCOMING MAIL SERVER
    Below this is OUTGOING MAIL SERVER
    Select: SMTP smtp.comcast.net>> PRIMARY SERVER :smtp.comcast.net>>second location of user name and password
    Here is the second place that the user name and password must be checked.
    I had changed my password in the first spot, but not the second spot. I had been receiving the same error message. This fixed my problem.

  • I have 2 email addresses set up on my iphone 5, 1 can send mail and the other can't... have tried deleting and adding the account, no luck, have tried all suggestions... anyone help?

    I have recently purchased the iphone 5S and have two AOL email accounts set up on it. They could both receive and send mail on the first day, but from the second day only 1 can send mail (both still receive). I get an message saying "Unable to send mail. A copy has been placed in your Outbox. Sending the message content to the server failed." This has been the response now for 3 days and suddenly this morning, I was able to send an email from this account, but only the one and now it's back to that same message. I have deleted and added the account again, using various methods. I even reset my phone and set it all up again from beginning with no luck. It is very frustrating and I am unsure why I can't send from both accounts, especially being that they are the same provider. I have read forums and it appears many have this same problem and I wondered if anyone has had it recently on this phone and how they fixed it. Someone said just use the AOL app to send from this account, yes that can be done, but it's inconvenient having to sign in all the time when i have a mail app that should work automatically. Any suggestions would be welcomed!!

    I am not sure if this issue is going to help you but lets give it a try.
    I know that where im from, which is the Netherlands, I am not able to sent e-mails from my iPhone or any other mobile device by using 3G or a random WIFI acces point. The provider only allowes you to sent e-mails when you are connected to a network of there own. Which means if you have provider "101" and your email settings are set up for this provider in your iPhone but your using the network of a friend of yours which is provider "202" you cannot sent emails from his network. Though you can receive them you may not sent.
    As I said, I am not aware if this issue is the same for you totaly depents on the country and provider your using.

  • How can send mails using hotmail/rediffmail domain name?

    I have used the below code to send a mail using javamail API?Even when I am sending my application does not have notified any of error/exceptions,But the message is not reached to I have given receipient's address in the to field.
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class Sendmail1 extends HttpServlet {
    private String smtpHost;
    // Initialize the servlet with the hostname of the SMTP server
    // we'll be using the send the messages
    public void init(ServletConfig config)
    throws ServletException {
    super.init(config);
    smtpHost = config.getInitParameter("smtpHost");
    //smtpHost = "sbm5501";
    smtpHost = "www.rediffmail.com";
    public void doGet(HttpServletRequest request,HttpServletResponse response)
    throws ServletException, java.io.IOException {
    String from = request.getParameter("from");
    String to "[email protected]";
    String cc = "[email protected]";
    String bcc ="[email protected]";
    String smtp ="www.rediffmail.com";
    String subject = "hai";
    String text = "Hai how r u";
    PrintWriter writer = response.getWriter();
    if (subject == null)
    subject = "Null";
    if (text == null)
    text = "No message";
    String status;
    try {
    // Create the JavaMail session
    java.util.Properties properties = System.getProperties();
    if (smtp == null)
    smtp = "www.rediffmail.com";
    properties.put("mail.smtp.host", smtp);
    Session session = Session.getInstance(properties, null);
    //to connect
    //Transport transport =session.getTransport("smtp");
    //transport.connect(smtpHost,user,password);
    // Construct the message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    Address fromAddress = new InternetAddress(from);
    message.setFrom(fromAddress);
    // Parse and set the recipient addresses
    Address[] toAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.TO,toAddresses);
    Address[] ccAddresses = InternetAddress.parse(cc);
    message.setRecipients(Message.RecipientType.CC,ccAddresses);
    Address[] bccAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.BCC,bccAddresses);
    // Set the subject and text
    message.setSubject(subject);
    message.setText(text);
    Transport.send(message);
    //status = "<h1>Congratulations,</h1><h2>Your message was sent.</h2>";
    } catch (AddressException e)
    status = "There was an error parsing the addresses. " + e;
    } catch (SendFailedException e)
    status = "<h1>Sorry,</h1><h2>There was an error sending the message.</h2>" + e;
    } catch (MessagingException e)
    status = "There was an unexpected error. " + e;
    // Output a status message
    response.setContentType("text/html");
    writer.println("<title>sendForm</title><body bgcolor= ><b><h3><font color=green><CENTER>CALIBERINFO.COM</CENTER></h3>Your message was sent to recepient(s).<br><font color=red>"+"\n"+to);
    writer.println("<br><br><a href=e:/mail/javamail/mail.html>back to compose</a>");
    writer.close();
    Please any one help me out from this probs.
    Awaiting for yours reply,
    or give me a reply to: [email protected]
    Regards,
    @maheshkumar.k

    Hi,
    how can send mails using hotmail/rediffmail domain name?In your java application,you specified www.rediffmail.com as your
    smtp server.But that is the address of that website.Try will a smtp
    server instead.For a list of free smtp servers,please visit http://www.thebestfree.net/free/freesmtp.htm
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support/

  • HT204075 I am not receiving mail to one of my email accounts. I can send mail from this account and all other accounts seem to be working.

    I am not receiving mail to one of my email accounts. I can send mail from this account and all other accounts seem to be working.

    Is this work email account on a BES server?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I can send mail but can't receive mail on thunderbird

    I am using Thunderbird since 2 years ago and im getting a new problem. I can send mail but cant receive any mail . When pressed GET mail i receive 'connecting to mail.gandi.net' only. that's all.
    Can you please help.
    below is my troubleshoot information:
    Application Basics
    Name: Thunderbird
    Version: 31.3.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20141127140543
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account1:
    INCOMING: account1, , (none) Local Folders, plain, passwordCleartext
    account2:
    INCOMING: account2, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account3:
    INCOMING: account3, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account4:
    INCOMING: account4, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account5:
    INCOMING: account5, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account6:
    INCOMING: account6, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account11:
    INCOMING: account11, , (rss) Feeds, plain, passwordCleartext
    account13:
    INCOMING: account13, , (rss) Feeds-2, plain, passwordCleartext
    account14:
    INCOMING: account14, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    Crash Reports
    http://crash-stats.mozilla.com/report/index/bp-0490c01b-d20a-4d94-89fa-de36f2141208 (12/8/2014)
    http://crash-stats.mozilla.com/report/index/bp-01ec1457-2d47-4bde-838d-e381a2141205 (12/5/2014)
    http://crash-stats.mozilla.com/report/index/bp-b0b8fa7c-5dc9-4dc5-8d8d-4aae12141205 (12/5/2014)
    http://crash-stats.mozilla.com/report/index/bp-660baa33-28ce-47c6-8fb4-1b5682141205 (12/5/2014)
    http://crash-stats.mozilla.com/report/index/bp-4a7623a9-b2b5-42c4-9f49-73aa52141204 (12/4/2014)
    Extensions
    Lightning, 3.3.1, true, {e2fda1a4-762b-4020-b5ad-a41df1933103}
    Quick Translator, 1.0, true, {5C655500-E712-41e7-9349-CE462F844B19}
    Simple Locale Switcher, 0.8.4, true, simplels@nohamelin
    Important Modified Preferences
    Name: Value
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 409600
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    extensions.lastAppVersion: 31.3.0
    font.internaluseonly.changed: false
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    font.size.variable.x-western: 17
    gfx.blacklist.suggested-driver-version: 6.1400.1000.5218
    gfx.direct3d.last_used_feature_level_idx: 0
    mail.openMessageBehavior.version: 1
    mail.winsearch.firstRunDone: true
    mailnews.database.global.datastore.id: f06768f2-32d9-440c-bc02-f0414c2d7f3
    mailnews.database.global.views.conversation.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1418013595
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    plugin.state.java: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_bgcolor: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_bgimages: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_colorspace:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_command:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_downloadfonts: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_duplex: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_bottom: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_left: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_right: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_top: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_evenpages: true
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_footercenter:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_footerleft: &PT
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_footerright: &D
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_headercenter:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_headerleft: &T
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_headerright: &U
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_in_color: true
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_bottom: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_left: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_right: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_top: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_oddpages: true
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_orientation: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_page_delay: 50
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_data: 9
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_height: 11.00
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_name:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_size_type: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_size_unit: 1
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_width: 8.50
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_plex_name:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_resolution: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_resolution_name:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_reversed: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_scaling: 1.00
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_shrink_to_fit: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_to_file: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_bottom: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_left: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_right: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_top: 0
    security.default_personal_cert: Select Automatically
    security.disable_button.openCertManager: false
    security.disable_button.openDeviceManager: false
    Graphics
    Adapter Description: Intel(R) HD Graphics Family
    Vendor ID: 0x8086
    Device ID: 0x0116
    Adapter RAM: Unknown
    Adapter Drivers: igdumd64 igd10umd64 igd10umd64 igdumdx32 igd10umd32 igd10umd32
    Driver Version: 8.15.10.2291
    Driver Date: 1-27-2011
    Adapter Description (GPU #2): NVIDIA GeForce GT 525M
    Vendor ID (GPU #2): 0x10de
    Device ID (GPU #2): 0x0df5
    Adapter RAM (GPU #2): 1024
    Adapter Drivers (GPU #2): nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Driver Version (GPU #2): 8.17.12.6721
    Driver Date (GPU #2): 2-18-2011
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.1.7601.17514)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 1/1 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS Util
    3.16.2.3
    3.16.2.3
    NSS SSL
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS S/MIME
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC

    Here is what I did to resolve the problem:
    In Mail/preferences/accounts/account information/ and at the bottom of the box there is a toggle arrow up and down to edit the outgoing mail server, check the box "use only this server" and  hit this toggle button and select "edit SMTP Server List" at the very bottom of the email names.
    Select Advanced tab.  Correct and/or add usernames and passwords as needed for each email account.  Be sure to select OK each time to get the passwords to hold!  Some changes don't seem to hold unless you click OK before you move on.
    To test:       Window/activity (a little windows will pop up showing activity bars)   and then "get mail" button.  This should show any problems
    Another test:  window/connection doctor
    This shouldl fix both pop and imap.  so far it worked on yahoo, mobile me, gmail, hotmail, and others.  Of course, you will need to know the incoming and outgoing mail server info, user name, and passwords.
    Too bad we have to go though hoops to use an email program that used to work well.  Worse yet, many may not know for days that their email isn't working.
    This is easy method of setting up your email accounts but may not allow enough detail to make the mail accounts function properly in Mail 5.0:
    system preferences/internet and wireless/mail, contacts, calendars/ add account
    shyannlindy listening to the outdoor concert from
    Cheyenne Frontier Days, the Worlds' Largest Outdoor Rodeo

  • Can't get mail or close mail program- can send mail

    Mail program shows spinny thing next to "inbox" forever but receives no new mail. Can't quit either- program hangs and must be force quit. Erased app and replaced with copy from other HD, same problem. Can send mail no problem. Can retrieve new email via web, not mail app. ISP says everything is cool their end. Can't reinstall because installed version is higher than system disc version. Help!

    Erased app and replaced with copy from other HD
    Bad idea.
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all filesystem issues, if any, move Mail from /Applications/ to the Trash, and reinstall it as described here:
    Custom installs in Mac OS X 10.4
    If the version of the system software on your installation disks is earlier than what you’re using now (and only in that case), then you must also reinstall the Combo Update for the type of computer and the version of Mac OS X you’re using, to bring Mail back in sync with the rest of the system:
    About the Mac OS X 10.4.8 Combo Update
    Mac OS X 10.4.8 Combo Update for PPC
    Mac OS X 10.4.8 Combo Update for Intel
    You may also want to read the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk before installing the update, no applications should be running while installing it, and you may experience unexpected results if you have third-party system software modifications (not normal applications) installed.
    The above won’t solve the problem, but will allow us to at least troubleshoot it properly. Post back with your observations when done. What type of account is this (POP, IMAP, .Mac)?

  • Restricting what users can send mail to off-site destinations

    How can i restrict what users can and can not send mail outside mi local domain ?? Without editing postfix ??
    Tx

    Without editing postfix? pretty much impossible.
    Anything you do is going to change posftix's confguration, and you're asking for options beyond Apple's Server Admin GUI, therefore you going to have to do some under-the-hood tweaking of postfix.
    (just to be pedantic, using Server Admin ultimately edits postfix's configuration files, so what's your reluctance here?)
    As for your request, there are so many ways of implementing this. The 'right' option depends on more details than you've specified. For example, how are you determining which users can/cannot send outside mail? Is it a fairly static list, or does it change frequently?
    The only option that comes close to not editing postfix is authentication. By default, only authenticated users can send outgoing mail, but anyone can send mail to a local address on the server, so that gives you a simple approach - have the permitted users configure their mail client with a username and password for SMTP, and have the non-permitted users leave the SMTP username/password empty.
    That's hardly foolproof, though - if any 'non-permitted' user enters their username and password they automatically fall into the 'permitted' group. That may or may not be sufficient for your need.
    There are other options, though, including IP address range checking, a permitted senders list, port options, and more. It's just a matter of how much you want to tweak postfix's configuration.

  • I can send mail but cannot receive it on my iMac since upgrading to Yosemite

    I can send Mail but I cannot receive it on my iMac Mail account, have checked all account information and it is correct.

    Hey phillipfrompaupack,
    I see that you are having issues with your mail in Yosemite. Here is an article for you that will help you troubleshoot these issues:
    OS X Mail: Troubleshooting sending and receiving email messages - Apple Support
    http://support.apple.com/en-us/ts3276
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • TS3276 I am no longer receiving my mail.  All my settings are the same and I can send mail.  The connection doctor says I am connected, but I am no longer receiving anything.  If you can help, I would appreciate it. Keep it simple, please.

    I am no longer receiving my mail.  All my settings are the same and I can send mail.  The connection doctor says I am connected, but I am no longer receiving anything.  If you can help, I would appreciate it. Keep it simple, please.

  • TS4605 why cant i receive mail on my ipad from icloud, but I can send mails?

    Why can't I recieve mails on my ipad from icloud?  I can send mails no problems there.  This has only recently happened before it was working fine.  When I go to check for new mails I get the following message: Cannot Get Mail  The connection to the server failed.  Please help, this is very fustrating.

    I can hear that frustration for sure. I deal with it every day.
    I would continue to push the landline provider over and over and over. They provide you with the landline service. They cannot complete the call to your cell phone. Everyone else can. Therefore it is their responsibility to make it work or at least give you a reasonable detailed explanation as to why it doesn't work so you could at least take the next appropriate steps. Do you have a trouble ticket number with the landline provider? Make sure they give you a trouble ticket number if you don't. Without a trouble ticket number you will have to continually repeat yourself every time you call them. With a ticket number every time you call you could tell the technician to reference that ticket number.
    Like I said when you're talking with someone in a managerial position request that they do call traces while you are making the call from the landline in real time. They should be able to see what happens to the call as it comes into and leaves their network. If they give you any call clearing or failure codes please document them and repeat them here.
    I would also ask the Rep to also make a test call to your cell phone and see what happens. If they can and you can't then it is clearly a problem with a switch on their network.
    Good luck.
    P.s. I typed this whole message using dictation on my iPhone five so hopefully it all came out right if not I apologize if it sounds confusing.

  • HT201320 I can send mail but I can't receive mail. All my account setup info is correct. Any ideas?

    I can send mail but I can't receive mail. All my account setup info is correct. Any ideas?

    I can send mail but I can't receive mail. All my account setup info is correct. Any ideas?

  • TS3276 I can't send mail but can receive mails on my macbook. However, I can send mails by logging into yahoo or gmail through Safari.

    I am using a macbook pro. I am not able to send any mails from my mac. I can recieve mails, but can't send.
    However, I can send mails when I log into yahoo or gmail from safari.
    Please give me measures to correct this issue.
    Thank You.
    Neel Jain
    <Email Edited by Host>

    I am using a macbook pro. I am not able to send any mails from my mac. I can recieve mails, but can't send.
    However, I can send mails when I log into yahoo or gmail from safari.
    Please give me measures to correct this issue.
    Thank You.
    Neel Jain
    <Email Edited by Host>

  • Entourage prob:  I can send mail but checking for received mail crashes app

    This just started this afternoon and I have no idea how to fix it.
    I can send mail in Entourage without a problem. But once the autocheck goes or I click "Send & Receive", Entourage crashes with "The application Microsoft Entourage has unexpectedly quit."
    I've rebooted a few times, and it's not helping whatsoever.
    I don't know if it's a virus, or if my Entourage file is corrupt, or what.
    Any ideas? Thanks.
    iMac 1 GHz PowerPC G4   Mac OS X (10.3.9)   Entourage 10.1.0

    I have just tried changing my incoming server name to pop3.virginmedia.com and, hey presto, it's working. Heaven knows why it simply just stopped in the first place... thank you for looking, though!!

  • Can send mail, can't receive ipod 3g

    Hi.  I can send mail but when trying to receive it says downloading but nothing happens.  Please help.  Thank you, Cindy

    See:
    iOS: Unable to send or receive email
    Did it work before?
    Does it now work on another device?

Maybe you are looking for

  • Family sharing members unable to use payment method

    I have set up family sharing and I am the organizer. My credit card shows as the "shared payment method."  I have invited other family members who have accepted. But when they go to make an app purchase, the device asks them to put in their payment i

  • Image Capture and Preview have trouble finding scanner. Photoshop no problem.

    Image Capture and Preview have trouble finding the scanner wirelessly unless it is on when the Mac starts up. Photoshop finds the scanner no problem. Any suggestions for Image Capture or Preview? The scanner is Canon MP620. Mac is MBP, running 10.8.2

  • 16:9 Frame Size Setting

    I'm working on a film installation with 2 x 4:3 sized Video Streams that will stream alongside each other in a 16:9 format presentation (leaving a thin black border top and bottom) I want to finally export a HD Sequence (1920 x 1080, 29.97fps, Apple

  • Copy and Paste function is not working in FFv23

    I cannot place cursor and choose content to copy. Cursor scrolls and will not allow me to highlight.

  • Making hi-res slide shows with PE7 or 5

    Hi all, I am a long time user of PE5 and prior, but have only recently started making slide shows with zooms, fades and music. I made a vCD, and the resolution wasn't very good on my HDTV. Must I use Premiere Elements 7 to make hi-res DVDs of my slid