Cfmail wont send from queue folder

I host my applications on my own windows 2003 server. I
recently set up an SMTP server on it, and in my coldfusion
administrator i set the address as 127.0.0.1 and it connects
successfully. When I send a mail using the cfmail tag, the mail is
sent to my c:>inetpub>mailroot>queue folder and then it
just sits there and wont send!! any suggestions?? This is really
annoying me! I have used other remote smtp servers before and they
work, but I would prefer to be able to do it this way so please
help me out if possible..

One thing that might help.
If your primary server is hosted by your company, double check the outgoing settings.
Host Name:
Use SSL:
Authentication:
Server Port:
If it zips through your primary server without effect, try turning the primary server off and one of the secondary on.
If connected to Edge or 3G, you can use ATT's SMTP server.
If issue still persists, then set up a gmail or yahoo account to test with.
Both are free email services.
If still fails, then general troubleshooting might help.
Here are a couple of articles from the apple support website that might help out.
http://support.apple.com/kb/HT1737
http://support.apple.com/kb/HT1414
http://support.apple.com/kb/TS1275
You might need to reset and or restore the iphone to resolve any software issues.
Hope this helps.

Similar Messages

  • Mail wont send from online too

    my mail wont send even when i send it from on line. is anyone else having this problem??

    I recently purchased a mac mail address
    Are you sure it's a .Mac address, or is it a MobileMe address?
    i can not send mail to her new address
    Are you trying to send mail to that address from a different address, or from her own address?
    What are the specific settings for the account (Incoming and Outgoing servers, port numbers for each, authentication method, and SSL status)?
    Mulder

  • Sending from Draft folder

    After composing an e-mail, I saved it in my draft folder. Later on when I go into my draft folder and want to send that e-mail, there. is no Send button visible.
    so how do I send an e-mail from the draft folder...........
    appreciate any help.
    thanks

    Open it by double-clicking, then send it.
    Anakonda

  • Count of Email by Sender from Outlook folder

    Is am new to writing VBA code , I would really really appreciate if anyone can help me with a VBA macro that can do the job of counting all emails by the sender's email address , within a particular Outlook folder.
    If the count of emails from a particular sender is more than 1 , it should populate an excel sheet with data of the email adddress and the time of receipt of the mail from that sender .

    It is not clear whether you want to process all the messages in the folder, or just those from a particular sender. The following does the latter.
    The former would be rather more complicated if you want to record messages from senders that have sent more than one message. Recording all messages in a folder is much simpler.
    Change the folder to the location where you want to store the workbook and
    allow the macro to create that workbook.
    Option Explicit
    Private olNS As Outlook.NameSpace
    Private olFolder As Outlook.MAPIFolder
    Private olItems As Outlook.Items
    Private olMsg As Outlook.MailItem
    Private Count As Long
    Private strDate As String
    Private strTime As String
    Private strFrom As String
    Private strEmail As String
    Private strSubject As String
    Private strValues As String
    Private vValues As Variant
    Private ConnectionString As String
    Private strSQL As String
    Private CN As Object
    Private xlApp As Object
    Private xlWB As Object
    Private bXLStarted As Boolean
    Private nAttr As Long
    Private i As Long
    Private Const strTitles As String = "Date|Time|From|E-Mail"
    Private Const strWorkbook As String = "C:\Path\Message Log.xlsx"
    Sub MessageLog()
        Count = 0
        strFrom = InputBox("Enter sender's name to record." & vbCr & _
                           "Exact spelling is essential.")
        If strFrom = "" Then Exit Sub
        Set olNS = Outlook.GetNamespace("MAPI")
        Set olFolder = olNS.PickFolder
        Set olItems = olFolder.Items
        For Each olMsg In olItems
            'MsgBox olMsg.Sender & vbCr & strFrom
            If olMsg.Sender = strFrom Then
                Count = Count + 1
                If Count = 2 Then Exit For
            End If
        Next olMsg
        'MsgBox Count & vbCr & strFrom
        If Count > 1 Then
            MsgBox "A completion message will indicate when the process has finished."
            For Each olMsg In olItems
                If olMsg.Sender = strFrom Then
                    RecordMessage olMsg
                    DoEvents
                End If
            Next olMsg
        End If
        MsgBox "Process Complete."
    lbl_Exit:
        Set olNS = Nothing
        Set olFolder = Nothing
        Set olItems = Nothing
        Set olMsg = Nothing
        Exit Sub
    End Sub
    Sub RecordMessage(Item As Outlook.MailItem)
        strFrom = Item.SenderName
        strEmail = Item.SenderEmailAddress
        strDate = Format(Item.ReceivedTime, "dd/MM/yyyy")
        strTime = Format(Item.ReceivedTime, "h:mm am/pm")
        strSubject = Item.Subject
        strValues = strDate & "', '" & _
                    strTime & "', '" & _
                    strFrom & "', '" & _
                    strEmail
        If Not FileExists(strWorkbook) = True Then xlCreateBook strWorkbook:=strWorkbook, strTitles:=strTitles
        WriteToWorksheet strWorkbook:=strWorkbook, strRange:="Sheet1", strValues:=strValues
    lbl_Exit:
        Exit Sub
    End Sub
    Private Function WriteToWorksheet(strWorkbook As String, _
                                      strRange As String, _
                                      strValues As String)
        ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;" & _
                           "Data Source=" & strWorkbook & ";" & _
                           "Extended Properties=""Excel 12.0 Xml;HDR=YES;"";"
        strSQL = "INSERT INTO [" & strRange & "$] VALUES('" & strValues & "')"
        Set CN = CreateObject("ADODB.Connection")
        Call CN.Open(ConnectionString)
        Call CN.Execute(strSQL, , 1 Or 128)
        CN.Close
        Set CN = Nothing
    lbl_Exit:
        Exit Function
    End Function
    Private Sub xlCreateBook(strWorkbook As String, strTitles As String)
        vValues = Split(strTitles, "|")
        On Error Resume Next
        Set xlApp = GetObject(, "Excel.Application")
        If Err <> 0 Then
            Set xlApp = CreateObject("Excel.Application")
            bXLStarted = True
        End If
        On Error GoTo 0
        Set xlWB = xlApp.Workbooks.Add
        With xlWB.Sheets(1)
            For i = 0 To UBound(vValues)
                .Cells(1, i + 1) = vValues(i)
            Next i
        End With
        xlWB.SaveAs strWorkbook
        xlWB.Close 1
        If bXLStarted Then
            xlApp.Quit
            Set xlApp = Nothing
            Set xlWB = Nothing
        End If
    lbl_Exit:
        Exit Sub
    End Sub
    Private Function FileExists(ByVal Filename As String) As Boolean
        On Error GoTo NoFile
        nAttr = GetAttr(Filename)
        If (nAttr And vbDirectory) <> vbDirectory Then
            FileExists = True
        End If
    NoFile:
        Exit Function
    End Function
    Graham Mayor - Word MVP
    www.gmayor.com

  • TS3899 I cannot send email from my I pad it sends from my I Phone and laptop but wont send from ipad.  i have deleted the email and reinstalled it and still cant send mail.I have contacted my internet provider and they say all my settings are correct.

    cannot send email from my ipad

    In the wee hours of the night I had an idea and downloaded OSX again and that seems to have fixed my problem. I wish I'd thought of that last week!
    Many thanks to the others who have researched and commented on simialr problems: you've encouraged me to use the Apple community.

  • Mac mail wont send from new address

    I wonder if anyone can help me...I recently purchased a mac mail address for my girlfriend and i set it up. (anyone who has done this before will know that all you have to do is put your username and password in to set the @mac address up and all the rest is done for you). However, i can not send mail to her new address, nor can i send anything from her address. I can though send her mail on me.com, and i can also send and receive me.com mail from her mac. I have no idea what is going on. HEELLPP!!

    I recently purchased a mac mail address
    Are you sure it's a .Mac address, or is it a MobileMe address?
    i can not send mail to her new address
    Are you trying to send mail to that address from a different address, or from her own address?
    What are the specific settings for the account (Incoming and Outgoing servers, port numbers for each, authentication method, and SSL status)?
    Mulder

  • TS3276 email still wont send : troubleshooted per article

    Occasionally my emial wont send from my Macbook. I use the troubleshooting guide. It now wont send at all

    Which of the steps in the article did you take, and what were the results?

  • IPhone wont send email from a certain mail account

    I know the settings are right, but the iPhone wont send mail from one of my mail accounts (hosted by the company i work for, which offers mail hosting as a service, and has hundreds of other iPhone users with the same account settings.)
    The progress bar that indicates "sending" zips by suspiciously quickly when I hit Send, but there is no audio confirmation. Then the email is gone - its not in my Sent Items folder, and its not in the Drafts folder and its not in my broom closet.
    From what I understand, if one SMTP server isn't available, it should default to the AT&T SMTP server, but it apparently doesn't even get that far, because the phone must think it's sent the message, or it would end up in the Drafts folder (or Outbox, I can't recall), which is what I would normally experience if I had no service at the time I was sending the message. I have two other accounts that work normally on the iPhone. Nothing has been recently changed with the SMTP server in question, which works fine with all my other devices.
    I've tried:
    • deleting the account and re-adding it manually (four times)
    • deleting the account and syncing it with my computer (three times)
    • hard resetting the iPhone
    • ensuring that the primary SMTP server for this account is, in fact, switched to "On" in Settings->Mail, Contacts, and Calendars, <mail account>-->SMTP (which brings me to another question: how do I edit this list? Is it automatically populated by the accounts in my Mail app?
    • screaming from my back porch
    Ideas?
    Email Account type: IMAP
    Authentication type: MD5 with SSL
    Port: 587
    8GB 3G iPhone, Software version 2.2.1

    One thing that might help.
    If your primary server is hosted by your company, double check the outgoing settings.
    Host Name:
    Use SSL:
    Authentication:
    Server Port:
    If it zips through your primary server without effect, try turning the primary server off and one of the secondary on.
    If connected to Edge or 3G, you can use ATT's SMTP server.
    If issue still persists, then set up a gmail or yahoo account to test with.
    Both are free email services.
    If still fails, then general troubleshooting might help.
    Here are a couple of articles from the apple support website that might help out.
    http://support.apple.com/kb/HT1737
    http://support.apple.com/kb/HT1414
    http://support.apple.com/kb/TS1275
    You might need to reset and or restore the iphone to resolve any software issues.
    Hope this helps.

  • My mac wont send emails from yahoo or any other websites when using an external USB modem!

    My mac wont send emails from yahoo or any other websites when using an external USB modem! I have checked the settings and they seem correct. Can anyone help? I do not have snow leopard. I can log on my email accounts, open my incoming emails (with difficulty coz it asks me to "try again" ) but I can never send emails, I always get: "sending is taking a little long, try again".
    What is the problem? this is a hair puller !!!

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • Can't send spam to junk from In folder

    My Mail app is acting funny, main prob is that it takes minutes to send spam from In folder to Junk (in fact it seems to be refusing to do so at all now, the coloured beachball just keeps turning) . Also it has just now marked as unread all 4,000+ items in my In folder as unread. Problem seems to have started after I installed Junkmatcher because lots of junk was evading built in spam filter and arriving in In box. I have deactivated Junkmatcher which didn't work at all and made everything v slow, I have put it in trash but it won't empty it from trash, says it is still in use. I have OS10.3.9.
    Any suggestions,
    Thanks,
    Michael
    London

    Hello Michael.
    I copied the following from JunkMatcher's website for disabling or removing the application.
    Remove the 3 rules the installer added for you: they are "Built-in Junk Filter", "JunkMatcher", and "Full Stop".
    You can also just temporarily deactivate the "JunkMatcher" rule without uninstalling, and later you can turn JunkMatcher back on by activating this rule again (in that case don't remove the items listed below!).
    Quit Mail.app.
    Quit and remove JunkMatcher.app.
    Remove folder ~/Library/Mail/Bundles/JunkMatcher.mailbundle.
    Remove folder ~/Library/Application Support/JunkMatcher.
    Remove folder ~/Library/Preferences/edu.cmu.cs.benhdj.JunkMatcher.plist.
    The recommended mailbox size limit for Jaguar or Panther Mail is 1GB. Since an account's Inbox mailbox is usually the most active mailbox and more prone to corruption over time, it is not a good idea to use an account's Inbox mailbox as the final storage location for all received messages not deleted.
    Better to create/utilize "On My Mac" location mailboxes to sort received messages by category that you need to save.
    If you want to remove JunkMatcher completely, follow the removal instructions provided first.
    After doing so and with the Mail.app quit, using the Finder go to Home > Library > Mail > this POP account named folder (named by the user name and incoming mail server for the account) > INBOX.mbox. The INBOX.mbox represents the account's Inbox mailbox in the mailboxes drawer under "In".
    Move the INBOX.mbox to the Desktop.
    When re-launching Mail, a new (and empty) INBOX.mbox will be created automatically by Mail within the account named folder which will allow the Mail.app to function properly again while working on the old INBOX.mbox moved to the Desktop.
    Control-click on the old INBOX.mbox moved to the Desktop and at the menu window that appears, select Show Package Contents.
    List the package content file names and size of each here.

  • Email WONT send - sits in outbox folder

    For some reason, although I can send email, my outgoing emails will NOT send - instead they stay in the outbox. Any idea how to fix?! THX!

    Hi and Welcome to the Community!
    Please clarify this confusion:
    Your subject line - "email WONT send - sits in outbox folder"
    Where you say -- "although I can send email"
    And finally where you say -- "my outgoing emails will NOT send - instead they stay in the outbox"
    So that's two votes for failure, and one for success. Can you clarify please?
    Thanks!
    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

  • Can I send 60GB BPAV folder to my video editor which I have got from my camera?

    Will I be able to send 60GB BPAV folder to my video editor which I have got from my camera?

    iPad Photo Recovery: How to Recover Deleted Photos
    http://www.iskysoft.com/iphone-data-recovery-mac/ipad-photo-recovery.html
    How to Restore Lost or Deleted Files from iPad
    http://www.iphone-ipad-recovery.com/recover-ipad-mini-files.html
    How to Recover Deleted Files from iPad
    http://www.kvisoft.com/tutorials/recover-deleted-files-from-ipad.html
    iSkysoft Free iPhone Data Recovery
    http://www.iskysoft.com/iphone-data-recovery/
    Recover iPhone/iPad/iPod touch lost data, Free.
    Free recover iPhone/iPad/iPod touch lost contacts, photos, videos, notes, call logs and more
    Recover data directly from iPhone or from iTunes backup
    Preview and recover lost iOS data with original quality
    Wondershare Dr.Fone for iOS
    http://www.wondershare.net/data-recovery/iphone-data-recovery.html?gclid=CJT7i9e 6gb4CFcvm7AodbUEAJQ
    Recover contacts, messages, photos, videos, notes, call history, calendars, voicemail, voice memos, reminders, bookmarks and other documents.
     Cheers, Tom

  • New macbook pro wont send e-mail

    hi. i bought a new macbook last weekend. i have a macbook pro already. i use mail on both thru a company called easyspace. i bought my own website and now i have a number of e-mail accounts on it. now my old mac sends emails fine. however when i enter the settings into the outgoing server bit on the new mac it wont send. have been in contact with easyspace and none of their advice works. they keep saying type smtp.iomartmail.com use password and have port 25, or 110. i also tried smtp.easyspace.com also doesnt work. any ideas. i cant believe x2 macs cant work together suing same wireless in same room? thanks for anyones help

    Try backing up your Users -> yourname -> Mail folder, and then copying from one machine to the next the com.apple.mail.plist file found in Users -> yourname -> Library -> Preferences. If it still won't send, it is possible there is a limitation on your router as far as who can send mail and what ports they can use. Changing the MTU setting on your network preferences or IPv6 setting may help. Also verify your router has the latest firmware update.

  • Mail wont send attachments..

    My mail program (2.2.1) wont send emails with attachments, particularly images. It places them in the outbox, sometimes without the attachment. If it is with the attachment, when I open them up and try to send them, it crashes the entire program.
    This is particularly frustrating as I am a photographer who needs this desperately...
    I'm not sending attachments larger than 10M as I know this is my limit, I've looked through previous posts and tried deleting plists and rebuilding things. Does anyone have any ideas what it could be. I had a g4 12inch powerbook and I had no problems with this....
    Thanks.

    It places them in the outbox, sometimes without the attachment.
    Do you get an error message when this happens?
    when I open them up and try to send them, it crashes the entire program.
    Does it really crash (i.e. quit unexpectedly) or does it freeze (i.e. become unresponsive)?
    <hr>
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    Go to Apple Menu > System Preferences > Network, choose Network Port Configurations from the Show popup menu, and make sure that the configuration used to connect to Internet appears at the top of the list. Leave checked (enabled) only the port configuration needed to connect to Internet and Built-in Ethernet (in that order if not the same), uncheck (disable) the rest of network port configurations, and see whether that helps — if it doesn’t, turn ON again the ones you want enabled.
    Do you have any Mail plug-ins? In the Finder, go to each of the following folders (if they exist). What do you see there?
    /Library/InputManagers/
    /Library/Mail/Bundles/
    ~/Library/InputManagers/
    ~/Library/Mail/Bundles/
    To make accurately reporting this information easier, you may open /Applications/Utilities/Terminal, type the following command (you can just copy it here and paste it in Terminal), and press <Return>. You can then copy the output of that command from Terminal and paste it in your reply to this post:
    ls -1 /Library/InputManagers /Library/Mail/Bundles ~/Library/InputManagers ~/Library/Mail/Bundles
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

  • Outlook 2010 - Multiple Exchange Accounts - Won't send from second account

    I've setup multiple exchange accounts in Outlook 2010.  I receive fine for both accounts, but cannot send from second account.  Sent email goes to the Outbox and stays there.
    I've tried going back to a second profile, and it works fine.  Mail in Outbox from efforts above stay in Outbox.  If I pull them up, I can resend with no issue.
    I need to be able to send with multiple accounts in same profile to do other projects I'm currently working on.  Any ideas???
    Thanks,
    Mike

    I've setup multiple exchange accounts in Outlook 2010.  I receive fine for both accounts, but cannot send from second account.  Sent email goes to the Outbox and stays there.
    I've tried going back to a second profile, and it works fine.  Mail in Outbox from efforts above stay in Outbox.  If I pull them up, I can resend with no issue.
    I need to be able to send with multiple accounts in same profile to do other projects I'm currently working on.  Any ideas???
    Thanks,
    Mike
    I was able to fix this with Outlook 2010 Service Pack 1.
    Another area that I had to change was the inbox for that other account I created a rule to put in the primary inbox folder (email 2).
    After that the email was only checking one to send and recieve based on the highlighted account, so to resolved that I went to Send/Reveive Groups > Define Groups > Edit Account Properties and made sure they refresh every 1 minute(s).
    solutions are not always answers

Maybe you are looking for

  • Mid 2010 MacBook Pro keeps rebooting (with crash logs)

    15 inch, Mid 2010 2.66ghz i7 8GB 1067 DDR3 Intel HD Graphics 288MB OSX 10.9.2 This has been happening for a few months now.  Sometimes it happens multiple times a day, sometimes a week or so can go by without a crash.  I've experienced 3 carashes in

  • Safari "Quits Unexpectedly" every time I click to open it

    Hi gang! A rather unusual case here... Out of the blue, my Safari app won't open anymore. When I click the icon on the dock, it bounces once, stutters, then comes up with a simple 'Safari quit unexpectedly' message. It mentions nothing about Plug-Ins

  • Help syncing multiple Ipods

    I have several questions I need to get answered before I have a war on Christmas morning. 1. I bought 2 kids new Ipods for Christmas which will be used on the same PC. How do I sync 2 Ipods on the same PC with out the chance of them deleting each oth

  • Problem with External List Management; Business Partner Type

    Hello experts; I created a mapping format for importing a simple notepad file. In the ELM i see all my fields populated correctly. Once i start the importing process it goes smoothly with no mistakes at all (green lights). The bp is actually imported

  • N73: I want to save the file Contacts.cdb

    Neither with the file manager x-plore nor Y Browser did I manage to find the file Contacts.cdb in my sister's Nokia N73. I want to copy it to the PC so to save the addressbook. Can anybody suggest how to do so? The file should be in C:\System\Data, b