SMTP Setting using "SmarterMAil" Server

I am using "SmarterMail" as my mail server on my website.(Preset by the host) I am trying to configure Mac "Mail" so that I can send and receive mail on "Mail"
Receiving works Good
Sending I get an error which has to do w/ SMTP Port.
Does anyone know what the SMTP port should be set to. I tried 143 as mentioned in another post, but it was about using IMAP on an iPhone.
When in the mail preferences it looks like there are 2 places to set "Advance settings" both of which have SMTP setting.
Which advance section do I use.
Thanks for any help w/ this issue.

I went to smarter-mail, and most talk about SmarterMail & MacMail was that my isp was blocking outbound mail through other servers on port 25.
My ISP is w/ Cox and it looks like they have started blocking outbound traffic on port 25, so Now I have my outbound SMTP for the SmarterMail using the "east.smtp.cox.net" port, and everything works good. Although I tried that setting before, I may have still had something else wrong somewhere.
Also using the cox port for a non cox account is a violation of their user aggrement, I don't think I'll set off any alarms for this. This is mainly done to prevent spammers from using the SMTP port.
So for now I am Ok...Until I get booted off of my cox account.

Similar Messages

  • Set 'Use Job server default' for Unmanaged disk destination

    Hi,
    I am using BO XI R2 SDK to schedule reports.
    I want to set all my reports destinations to Unmanaged disk to a particular folder. I have set these in reportjobserver's destination configuration too.
    Now i want create schedules through code for all my reports. I want these reports to use the job server defaults. I am unable to find a solution for this. The code i am currently using is as follows:
    Code:
    InfoObject diskObj = tempStoreForDisk.Query("SELECT * FROM  ci_systemobjects where si_name='CrystalEnterprise.DiskUnmanaged'")[1];
                    DestinationPlugin destDiskPlugin = (DestinationPlugin)diskObj;
                    DiskUnmanaged diskUnmanaged = (DiskUnmanaged)destDiskPlugin;
                    DestinationOptions destinationOptions = (DestinationOptions)diskUnmanaged.ScheduleOptions;
                    DiskUnmanagedOptions diskUnmanagedOptions = new DiskUnmanagedOptions(destinationOptions);
                    diskUnmanagedOptions.DestinationFiles.Add(path);
                    schedulingInfo.Destinations.Add("CrystalEnterprise.DiskUnmanaged");
                    schedulingInfo.Destinations[1].SetFromPlugin(destDiskPlugin);
    I want the italics line of code to be replaced with some code that enables the instance to use job server defaults.
    If a solution for the above query is not available, is it possible to set 'specific filename with extension' in the unmanaged destination through code?
    Could anyone please help me with any pointers?
    Thanks.

    Hello, Gayathri;
    I am not aware of a method to get defaults from the Job Server.
    You can use Visual Studio .NET to schedule to a disk file. We do have samples associated with our Developers Library on line.
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    The sample I am thinking of is "Schedule Report".
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/BOE_SDK/sampleList.htm
    Here is a simple sample that schedules to disk:
    Imports CrystalDecisions.Enterprise
    Imports CrystalDecisions.Enterprise.Desktop
    Imports CrystalDecisions.Enterprise.Dest
    Public Class ScheduleDisk
        Inherits System.Web.UI.Page
        Dim ceSession As EnterpriseSession
        Dim ceEnterpriseService As EnterpriseService
        Dim ceInfoStore As InfoStore
        Dim ceReportObjects As InfoObjects
        Dim ceReportObject As InfoObject
        Dim ceReport As Report
        Dim sQuery As String
    #Region " Web Form Designer Generated Code "
        'This call is required by the Web Form Designer.
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        End Sub
        Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
            'CODEGEN: This method call is required by the Web Form Designer
            'Do not modify it using the code editor.
            InitializeComponent()
        End Sub
    #End Region
        Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            'Put user code to initialize the page here
            Try
                'grab the Enterprise session
                If TypeOf Session.Item("ceSession") Is Object Then
                    ceSession = Session.Item("ceSession")
                    'Create the infostore object
                    ceEnterpriseService = ceSession.GetService("", "InfoStore")
                    ceInfoStore = New InfoStore(ceEnterpriseService)
                    'Create query to grab the desired report
                    sQuery = "Select SI_ID From CI_INFOOBJECTS Where SI_PROGID = 'CrystalEnterprise.Report' AND SI_Name='Consolidated Balance Sheet' AND SI_INSTANCE=0"
                    ceReportObjects = ceInfoStore.Query(sQuery)
                    'check for returned reports
                    If ceReportObjects.Count > 0 Then
                        ceReportObject = ceReportObjects.Item(1)
                        ceReport = CType(ceReportObject, Report)
                        'Create an interface to the scheduling options for the report.
                        Dim ceSchedulingInfo As SchedulingInfo
                        ceSchedulingInfo = ceReport.SchedulingInfo
                        'run the report right now
                        ceSchedulingInfo.RightNow = True
                        'run the report once only
                        ceSchedulingInfo.Type = CeScheduleType.ceScheduleTypeOnce
                        'When scheduling to all destinations except the printer, you must first retrieve
                        'the appropriate destination object. Each destination InfoObject is stored in the
                        'CMS system table (CI_SYSTEMOBJECTS) under the Destination Plugins folder
                        'Retrieve the DiskUnmanaged Plugin from CI_SYSTEMOBJECTS
                        Dim ceDestinationObjects As InfoObjects
                        Dim ceDestinationObject As InfoObject
                        ceDestinationObjects = ceInfoStore.Query("Select * from CI_SYSTEMOBJECTS Where SI_NAME = 'CrystalEnterprise.DiskUnmanaged'")
                        ceDestinationObject = ceDestinationObjects.Item(1)
                        'Create the DestinationPlugin object
                        Dim ceDisk As New DestinationPlugin(ceDestinationObject.PluginInterface)
                        'Create a diskUnmanagedOptions object and its ScheduleOptions from the Destination plugin
                        Dim ceDiskOpts As New DiskUnmanagedOptions(ceDisk.ScheduleOptions)
                        ceDiskOpts.DestinationFiles.Add("c:\ScheduledReports\ScheduledToDisk.rpt")
                        'Copy the properties from the Destination Plugin object into the report's scheduling
                        'information.  This will cause the file to be transfered to Disk after it has been run.
                        Dim ceDestination As Destination
                        ceDestination = ceSchedulingInfo.Destination
                        ceDestination.SetFromPlugin(ceDisk)
                        'schedule report
                        ceInfoStore.Schedule(ceReportObjects)
                        Response.Write("Report Scheduled Successfully with an Object ID of : " + ceReportObject.Properties("SI_NEW_JOB_ID").ToString)
                        Response.Write("<br>Report Scheduled to the following location: " + ceDiskOpts.DestinationFiles(1).ToString)
                    Else
                        'no objects returned by query
                        Response.Write("No report objects found by query <br>")
                        Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
                    End If
                Else
                    'no Enterprise session available
                    Response.Write("No Valid Enterprise Session Found!<br>")
                    Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
                End If
            Catch err As Exception
                Response.Write("There was an error scheduling the report: <br>")
                Response.Write(err.Message.ToString + "<br>")
                Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
            End Try
        End Sub
    End Class
    Elaine

  • How to use open Row set in sql server 2014

    Hello All,
    How to open the row set using sql server 2014 using link server connection.

    Hi  denyy,
    Are you referring to the OPENROWSET function in SQL Server 2014?
    The OPENROWSET method is an alternative to accessing tables in a linked server and is a one-time, ad hoc method of connecting and accessing remote data by using OLE DB. The examples below demonstrate how to use the OPENROWSET function:
    A. Using OPENROWSET with SELECT and the SQL Server Native Client OLE DB Provider
    SELECT a.*
    FROM OPENROWSET('SQLNCLI', 'Server=Seattle1;Trusted_Connection=yes;',
    'SELECT GroupName, Name, DepartmentID
    FROM AdventureWorks2012.HumanResources.Department
    ORDER BY GroupName, Name') AS a;
    B. Using the Microsoft OLE DB Provider for Jet
    SELECT CustomerID, CompanyName
    FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
    'C:\Program Files\Microsoft Office\OFFICE11\SAMPLES\Northwind.mdb';
    'admin';'',Customers);
    GO
    C. Using OPENROWSET to bulk insert file data into a varbinary(max) column
    USE AdventureWorks2012;
    GO
    CREATE TABLE myTable(FileName nvarchar(60),
    FileType nvarchar(60), Document varbinary(max));
    GO
    INSERT INTO myTable(FileName, FileType, Document)
    SELECT 'Text1.txt' AS FileName,
    '.txt' AS FileType,
    * FROM OPENROWSET(BULK N'C:\Text1.txt', SINGLE_BLOB) AS Document;
    GO
    D. Using the OPENROWSET BULK provider with a format file to retrieve rows from a text file
    SELECT a.* FROM OPENROWSET( BULK 'c:\test\values.txt',
    FORMATFILE = 'c:\test\values.fmt') AS a;
    Reference:
    OPENROWSET (Transact-SQL)
    Using the OPENROWSET function in SQL Server
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.

  • Cannot set Use only this server for iCloud mail

    Each new versions of OS X add more bells and whistles and brings us closer to the fun that made me move away from Windows, 9 years ago!
    So this update appears to have problems saving my setting and mail is really having problems.
    I have 7 accounts and each has thier own SMTP out going mail server which I set in the Edit SMTP Server List.
    For some reason my iCloud account has lost this setting and now when I try to set it Mail tells me it cannot save the setting while the Incomming mail server is empty.
    But iCloud sets it's own incomming server! I cannot change the setting!
    I'm very disapointed with the way the quality of OS X has dropped with each new release. I'll soon be back sitting up all night trying to keep the Mac working just like I did in the bad old days with Windows, only with less money in my pocket!

    Hi there
    If you have more than one Mail account on more then one server, you can select the server from which you want to sent the mail. If you select "Use only this server" you can't select the smtp server on sending. thats all
    regards
    OH

  • Use Lion Server to set up security in Web Sharing

    Can I use Lion Server to set up security in Web Sharing?
    I want a password prompt to appear when someone comes to look at my Web Sharing files.
    I have tried to do this manually in Snow Leopard and Lion, and am considering buying Lion Server just for this one purpose.
    Does the admin GUI in Lion Server have an option that allows you to set up a password prompt for folks that look at my Web Sharing files?
    THanks.
    mac

    Miracles do happen.
    Because I just bought Lion Server, I was able to get a guy from the Apple Server support group on the phone, for a long time, and he helped me set this up using the Server app and the Server Admin app.
    Now I have a password prompt on my Web Sharing files.
    It's an incredible relief to have this working.
    Thanks for the responses.

  • Change character set used to write a file in application server.

    Hello Experts,
                       I want to know if we can change the character set used to create a file in application server.(Is it posible to use a particular character set while creating a file in application server.
                      I will be very great full for any help.
    Thanks in advance.
    Sharath

    Hello Sarath,
    There is an extension CODE PAGE with OPEN DATASET stmt.
    Can you please elaborate which character set you want to write to the application server?
    BR,
    Suhas

  • "do not use proxy server for local (intranet) addresses" IEM setting

    Hi, i would like to find out where can i find the following setting in GPO which used be found in IEM.
    "do not use proxy server for local (intranet) addresses" Enabled/Disabled
    as currently im setting the IE proxy exception list via GPP, i don't see that option.

    Hi,   
    As you notice that when we use GPP Internet Setting item to configure bypass proxy servers, there is no "do not use proxy server for local (intranet) addresses" option in GPP Internet
    Setting item. However, as suggested by zanderol24’s reply, we can use bypass proxy server for local addresses option under
    Proxy server to achieve the same function.
    Best Regards,
    Erin

  • Cannot set Start Mode using SQL Server Configuration Manager

    I have SQL Server 2012 Express installed on Windows 8.1 and am trying to change the Start Mode to Manual using SQL Server Configuration Manager. However, when I open the Properties dialog and use the drop-down for Start Mode on the Service tab the drop-down
    is inoperative. A "vertical bar" appears but no options.
    Is there some other way that I can change the Start Mode?

    I have SQL Server 2012 Express installed on Windows 8.1 and am trying to change the Start Mode to Manual using SQL Server Configuration Manager. However, when I open the Properties dialog and use the drop-down for Start Mode on the Service tab the drop-down
    is inoperative. A "vertical bar" appears but no options.
    Is there some other way that I can change the Start Mode?
    I have seen that on my laptop as well and it was due to display /resolution setting. Please see if that helps you. BTW, as already answered, services.msc is another way of changing it.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Cannot send message using the server (null)

    i use mail 2.1.
    i have a .mac account and have three other email accounts attached to my mail account.
    lately, i cannot send any email.
    the switchiing ports fix hasn't helped either.
    this is the error message:
    CANNOT SEND MESSAGE USING THE SERVER (null)
    The server response was: 5.1.0 <email [email protected]>...
    From address does not match authentication.
    Use the pop-up menu below to try a different outgoing mail server. All messages will use this server until you quit Mail or change your network settings.
    Message from: email <[email protected]>
    Send message using: [there is a combo box here with all the four accounts servers listed]
    no matter which one i pick it doesn't work and no email is sent.
    anyone have this error before? or now how to fix it?
    i'd be appreciative.
    thanks
    1.67 GHz Power PC PowerBook G4   Mac OS X (10.4.6)   Sony HDR HC3 HD HandyCam MiniDV

    I was having a similar problem (don't feel like typing all the details)
    I was about to to delete my com.apple.mail.plist, when finally it hit me.
    I ran ethereal (again, I'm sorry, but learning how to use ethereal is a topic unto itself). Following the TCP stream (ie. looking at the smtp messages being sent back and forth) I came across two problems. For some reason my port number was set to 567 or something like that, when it's supposed to be 25, as I had originally set it to.
    Once I corrected the port number I started receiving an error message from the smtp server. It said the return email address could not be authenticated. (using xyz.com as an example) The correct return email address was supposed to be [email protected], but for some reason it was changed to john@xyz in the account settings.
    Anyway, to get to the point, another thing to check is that your return address has been set correctly, and if all else fails, make sure you have X11 installed and use fink to install and run ethereal. This will let you know if you are actually connecting to the server, and will show you any error messages.
    PS. I think this problem started occurring with the last update made to mail. I believe it somehow corrupted my settings. This would explain how my port number could have been changed to the default port number of .mac mail.

  • How to send PLAIN text email from sp_send_dbmail using SQL Server 2008 R2?

    I have configured Database Mail in SQL Server 2008 R2 (64) and it sends emails just fine. However the destination is recieving the body of thes message as Base 64 encoding.
    Snippet:
    EXEC msdb..sp_send_dbmail @profile_name='Outmail', @recipients = @recpts, @subject = @subj, @body_format = 'TEXT', @body=@body2;
    As you can see I set @body_format to TEXT, but it still sends Base 64. I need to send plain ASCII text. How can I change this?

    I am having this exact issue too.  I have a trigger that sends an email using a stored procedure.  The dbmail is sending the email using the Exchange 2010 server SMTP.  It does not login so the email is relayed as user = "Anonymous". 
    The SQL dbmail email header is showing the following:
    Content-Type: text/plain; charset="utf-8"
    Content-Transfer-Encoding: base64
    MIME-Version: 1.0
    X-MS-Exchange-Organization-AuthSource: MX01.domain.local
    X-MS-Exchange-Organization-AuthAs: Anonymous
    Here is the header if I send via Outlook profile using the legacy program I am trying to automate using SQL Server 2008R2:
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    MIME-Version: 1.0
    X-MS-Has-Attach:
    X-MS-Exchange-Organization-SCL: -1
    X-MS-TNEF-Correlator: <[email protected]>
    MIME-Version: 1.0
    X-MS-Exchange-Organization-AuthSource: MX01.domain.local
    X-MS-Exchange-Organization-AuthAs: Internal
    X-MS-Exchange-Organization-AuthMechanism: 03
    X-Originating-IP: [192.168.13.66]
    Any help would be greatly appreciated!

  • Mail: 2 problems - Reply and SMTP setting

    Hi all,
    never had any special issues with Lion, but after upgrading to Mountain Lion I have these 2 issues that I can't solve.
    I use Mac Mail , connecting and receiving/sending emails for 3 different accounts, one for my company (hosted on an external server via IMAP/SMTP), one for iCloud and the other is a free account (IMAP/SMTP)
    1) When I reply to an email starting from the inbox , the from is properly placed. Let's say I get an email in my company's inbox, I reply and the from is selected as my company email.
    But when I move that message to a folder, and then I reply to that email starting from the new folder, the from is not the right one, but it takes another random email from one of my 3 accounts (most usually the first one but I'm not sure). So I must manually change the email sender to the proper one everytime. This happens with all of my 3 accounts
    2) I have 3 SMTP Server settings to send mail. The company's SMTP server, iCloud and my ISP SMTP server for the free account.
    My company's SMTP server setting uses standard ports, password authentication, but doesn't use SSL.
    Sometimes when replying I find the email not leaving the outbox, with an error. Then I go and check the SMTP server settings, and I find the SSL setting ON. I turn it OFF and it works again. But sometimes it goes ON again , randomly, and I can't figure out how to stop this weird behaviour.
    Thanks for your help mates.
    Kind regards

    I tried wiping out all SMTP servers and re-entering them one-by-one. No luck. The problem's still there.
    The same for the wrong sender in reply-to messages started from folders problem.
    Could anyone help me out? Should I provide feedback to Apple?
    Thanks, Kind Regards

  • HT201320 Once I have downloaded email on my iPad the same is not downloaded on my laptop. Have tried all settings including choosing the setting DELETE FROM SERVER:NEVER and REMOVE FROM SERVER:NEVER

    Once I have downloaded email on my iPad the same is not downloaded on my laptop. Have tried all settings including choosing the setting DELETE FROM SERVER:NEVER and REMOVE FROM SERVER:NEVER

    Hey rbrylawski, just wanted to let you know that my ipad email problems have been solved. Called Apple Sup in OZ, I'm in NZ. Daniel Barber was the support tech from heaven!! I was about to return the ipad but solving this issue reset my faith in phone support.....perhaps until I call a differnet companys phone support eh? Anyhow, for reference the fix is below.  My accounts are all POP not IMAP, and the primary smtp server setting had defaulted to have SSL switched on and the port was set to 5XX (something, cant remember). Anyhow, SSL was switched off and the port was swithced to 25. VOILÀ!!  Settings/Mail, contacts, calendars/My POP mail account/smtp/primary server/ >>> server on, no username and password,  use SSL off,  no authentication,  Server Port 25  Thanks for having a crack at it. This might help when assisting another user. Cheers Tonino

  • HT1277 I can recieve emails but I can't send them out.  The blue bar at the bottom left of the Mail page gets half way across and then the pop-up "Cannot send message using the server" comes up?  What do I do?

    I have my Yahoo Mail "poped" over to Apple Mail.  I can recieve emails but I can't send them out.  The blue bar at the bottom left of the Mail page gets half way across and then the pop-up "Cannot send message using the server" comes up?  What do I do?

    Your outgoing mail server is different than your incoming server. Usually the outgoing mail server will have smtp in it. I noticed yours said "cannot send message using the server mail.wavecable.com". That sounds like an incoming mail server. Try setting your outgoing mail server to smtp.wavecable.com
    I hope that helps.

  • TS3276 my email error says can not send massege using the server

    I am trying to sen an email an the error message says"can not send message using the server" I don't how to fix this.

    What OS are you using?
    Double-checking all settings is good. Along the way, one thing to try:
    Have a look at your SMTP server settings to see if the port is set to "default" or "custom".  If it is "default" try switching to custom using one of the numbers listed under "default". That fixed it for me on one of my accounts.
    (To do all this:  Mail, Preferences, Accounts, Outgoing Mail Server, Edit SMTP server list, Advanced.)
    charlie

  • Error Message: "Can't Send Message using the Server UCPB GEN"

    Frequently i can't send emails from "UCPBGEN" "Gmail", "MSN" and "Yahoo". There are times i can, without changing any setting. The error message i am get is "Can't Send Message using the server..."
    When i check connection doctor, they are all green.

    What OS are you using?
    Double-checking all settings is good. Along the way, one thing to try:
    Have a look at your SMTP server settings to see if the port is set to "default" or "custom".  If it is "default" try switching to custom using one of the numbers listed under "default". That fixed it for me on one of my accounts.
    (To do all this:  Mail, Preferences, Accounts, Outgoing Mail Server, Edit SMTP server list, Advanced.)
    charlie

Maybe you are looking for

  • How to create an new administrator with ldif files

    I need another administrator as orcladmin for create an new tree in OID 11g which groups and right must this administrator have?

  • Siebel EAI Value Maps

    HI, I need to understand how we use the EAI value Maps for mapping values for external System. I am using Siebel 8.0 and need to map values for 2 fields before sending the SOAP message using Outbound Web Service. I can send it and receive the respons

  • Production Order fixed assignment ( AFS)

    Hi Gurus please help me , i am doing below mentioned scenario 1) Set the customization such that, when we release the order, Material Staging should happen automatically. 2) Create a Production Order and save it after releasing it. 3) In CO02, delete

  • Samsung ML-1450 Printer Driver for Mac OS 10.5.4

    Hello! I would like to get Samsung ML-1450 Printer Driver for Mac OS 10.5.4. The old driver does not work with 10.5.4, Any help would be appreciated! Thanks. SMalkan

  • Audio is missing when I export longer mp4s from After Effects File via AME. Can you help?

    I'm using After Effects to colour correct and add some titles to long .mov files. (typically 45 mins to 1.5 hours in length). I am then rendering out to the Vimeo 720 25 preset (.mp4s with h.264) using AME. The problem occurs when I try to render out