Smtp server address for Z10

Hi, i am from PAkistan, just got Z10, the problem i am facing is i am unable to send emails , can some body help me what i should write in the SMTP server, as i have tried to put my company smtp and my carrier smtp but still fail

Hey rehankhwaja,
Welcome to the BlackBerry Support Community Forums.
Thanks for the question.
When sending an email message do you receive a clock icon or an error message stating Protocol layer was unable to send a message?  If so, please contact your network service provider and ask to be transferred to BlackBerry so we can gather some logs to help with our investigation.
Thanks.
-ViciousFerret
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Like! for those who have helped you.
Click  Accept as Solution for posts that have solved your issue(s)!

Similar Messages

  • No SMTP server specified for CFMAIL.

    Hello
    i am tryiing to run this tutorial and i am getting this
    error.
    No SMTP server specified for CFMAIL.
    what should i do?
    The web site you are accessing has experienced an unexpected
    error.
    Please contact the website administrator.
    The following information is meant for the website developer
    for debugging purposes.
    Error Occurred While Processing Request
    No SMTP server specified for CFMAIL.
    In order to send SMTP mail messages, ColdFusion requires that
    a default SMTP server be specified. You can set the default SMTP
    server using the Mail page of the ColdFusion Administrator.
    Alternatively, you can make sure that all CFMAIL tags have a
    SERVER= attribute provided. In this particular case, no SERVER=
    attribute was provided and no default SMTP server setting has been
    specified.
    The error occurred in
    C:\CFusionMX7\wwwroot\CFIDE\cfmbible\ch31\1-cfmail-simple.cfm: line
    3
    1 : <!--- email may never be sent if the email address in
    the From attribute below is not changed to a valid value for your
    mail server--->
    2 :
    3 : <cfmail from="[email protected]" to="[email protected]"
    subject="Thanks for joining">
    4 :
    5 : Thanks very much for joining our service. We welcome you
    to visit other links on our site, including
    http://www.yourdomain.com/somedir/somepage.cfm
    Resources:
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
    SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Remote Address 127.0.0.1
    Referrer
    http://127.0.0.1:8500/CFIDE/cfmbible/ch31/
    Date/Time 16-May-07 02:06 PM

    you can specify mail server directly in the <cfmail>
    tag, without having
    to specify one in cf admin:
    <cfmail server="your SMTP mail server address here, eg.
    mail.yourdomain.com" ...>
    if your SMTP server requires authentication, then you will
    also have to
    add username and password attribute to the <cfmail> tag
    along with the
    server attribute:
    <cfmail server="your SMTP mail server address here, eg.
    mail.yourdomain.com" username="your user name, usually the
    first part of
    or full email address" password="password for the username
    specified in
    the username attribute" ...>
    PS: you may want to download CFML Reference Manual from
    adobe.com - it
    has explanations and examples for all cf tags and functions.
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Java mail(fetch default SMTP server address)

    I am writting a code to send an email using Java Mail API.
    I have manged what I wanted(send a mail with an attachment)
    But in my code I have hard coded the SMTP server address,that is what I dont want to do .Is there anything in java which can fetch the default SMTP server address ?

    Let me send the code itself to make it clear
    Here the host is hard coded to10.1.1.5
    I dont want that ,rather I would like my code itself to fetch the host
    package javamail;
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class SendMailUsage {
    public static void main(String[] args) {
    // SUBSTITUTE YOUR EMAIL ADDRESSES HERE!!!
    String to = "[email protected]";
    String from = "[email protected]";
    // SUBSTITUTE YOUR ISP'S MAIL SERVER HERE!!!
    String host = "10.1.1.5";
    // Create properties for the Session
    Properties props = new Properties();
    // If using static Transport.send(),
    // need to specify the mail server here
    props.put("mail.smtp.host", host);
    // To see what is going on behind the scene
    props.put("mail.debug", "true");
    // Get a session
    Session session = Session.getInstance(props);
    try {
    // Get a Transport object to send e-mail
    Transport bus = session.getTransport("smtp");
    // Connect only once here
    // Transport.send() disconnects after each send
    // Usually, no username and password is required for SMTP
    bus.connect();
    //bus.connect("smtpserver.yourisp.net", "username", "password");
    // Instantiate a message
    Message msg = new MimeMessage(session);
    // Set message attributes
    msg.setFrom(new InternetAddress(from));
    InternetAddress[] address = {new InternetAddress(to)};
    msg.setRecipients(Message.RecipientType.TO, address);
    // Parse a comma-separated list of email addresses. Be strict.
    msg.setRecipients(Message.RecipientType.CC,
    InternetAddress.parse(to, true));
    // Parse comma/space-separated list. Cut some slack.
    msg.setRecipients(Message.RecipientType.BCC,
    InternetAddress.parse(to, false));
    msg.setSubject("Test E-Mail through Java");
    msg.setSentDate(new Date());
    // Set message content and send
    setTextContent(msg);
    msg.saveChanges();
    bus.sendMessage(msg, address);
    setMultipartContent(msg);
    msg.saveChanges();
    bus.sendMessage(msg, address);
    setFileAsAttachment(msg, "D:/ketan.txt");
    msg.saveChanges();
    bus.sendMessage(msg, address);
    setHTMLContent(msg);
    msg.saveChanges();
    bus.sendMessage(msg, address);
    bus.close();
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    // How to access nested exceptions
    while (mex.getNextException() != null) {
    // Get next exception in chain
    Exception ex = mex.getNextException();
    ex.printStackTrace();
    if (!(ex instanceof MessagingException)) break;
    else mex = (MessagingException)ex;
    // A simple, single-part text/plain e-mail.
    public static void setTextContent(Message msg) throws MessagingException {
    // Set message content
    String mytxt = "This is a test of sending a " +
    "plain text e-mail through Java.\n" +
    "Here is line 2.";
    msg.setText(mytxt);
    // Alternate form
    msg.setContent(mytxt, "text/plain");
    // A simple multipart/mixed e-mail. Both body parts are text/plain.
    public static void setMultipartContent(Message msg) throws MessagingException {
    // Create and fill first part
    MimeBodyPart p1 = new MimeBodyPart();
    p1.setText("This is part one of a test multipart e-mail.");
    // Create and fill second part
    MimeBodyPart p2 = new MimeBodyPart();
    // Here is how to set a charset on textual content
    p2.setText("This is the second part", "us-ascii");
    // Create the Multipart. Add BodyParts to it.
    Multipart mp = new MimeMultipart();
    mp.addBodyPart(p1);
    mp.addBodyPart(p2);
    // Set Multipart as the message's content
    msg.setContent(mp);
    // Set a file as an attachment. Uses JAF FileDataSource.
    public static void setFileAsAttachment(Message msg, String filename)
    throws MessagingException {
    // Create and fill first part
    MimeBodyPart p1 = new MimeBodyPart();
    p1.setText("This is part one of a test multipart e-mail." +
    "The second part is file as an attachment");
    // Create second part
    MimeBodyPart p2 = new MimeBodyPart();
    // Put a file in the second part
    FileDataSource fds = new FileDataSource(filename);
    p2.setDataHandler(new DataHandler(fds));
    p2.setFileName(fds.getName());
    // Create the Multipart. Add BodyParts to it.
    Multipart mp = new MimeMultipart();
    mp.addBodyPart(p1);
    mp.addBodyPart(p2);
    // Set Multipart as the message's content
    msg.setContent(mp);
    // Set a single part html content.
    // Sending data of any type is similar.
    public static void setHTMLContent(Message msg) throws MessagingException {
    String html = "<html><head><title>" +
    msg.getSubject() +
    "</title></head><body><h1>" +
    msg.getSubject() +
    "</h1><p>This is a test of sending an HTML e-mail" +
    " through Java.</body></html>";
    // HTMLDataSource is an inner class
    msg.setDataHandler(new DataHandler(new HTMLDataSource(html)));
    * Inner class to act as a JAF datasource to send HTML e-mail content
    static class HTMLDataSource implements DataSource {
    private String html;
    public HTMLDataSource(String htmlString) {
    html = htmlString;
    // Return html string in an InputStream.
    // A new stream must be returned each time.
    public InputStream getInputStream() throws IOException {
    if (html == null) throw new IOException("Null HTML");
    return new ByteArrayInputStream(html.getBytes());
    public OutputStream getOutputStream() throws IOException {
    throw new IOException("This DataHandler cannot write HTML");
    public String getContentType() {
    return "text/html";
    public String getName() {
    return "JAF text/html dataSource to send e-mail only";
    } //End of class

  • E90 IM server address for hotmail and yahoo

    Hi,
    I would like to start using my IM in E90 and have a hotmail and yahoo account. I was wondering what is the server address for both IM to be able to logon and chat?
    thx

    hey brother .. tried the Yamigo thing .. started IM too .. signs in Yamigo .. but dont know how to incoparate my yahoo and msn in it .. contrary to that it takes my yahoo id as my contact .. i have added my yahoo and msn on yamigo when i signed up there .. no wwhen i search any contact from its server .. it finds ..the person  ( the ids i get from yamigo server ) but when i start a convo .. it says SERVER ERROR .. kindly help ..
    btn .. i m using a communicator E90 .. NOKIA .. if u cant call just send me a note here so i can call u on ur cell 
    thanks
    @li.
    Edited personal information 
    Message Edited by shehanj on 22-Feb-2009 06:39 PM

  • What/where is the "server address" for the My Cloud NAS?

    I recently purchased a 2TB My Cloud NAS to store my FLAC music files (many thousands of them). I'm trying to use JRiver as a media controller but I can't find a path to the files. I'm using a Macbook Air (osx 10.10.4). The controller program asks for a "server address" and I have no idea what it is or where I may find an address. The music files are in the Public folder and there is no other identiification for it as far as I know. One forum suggested the following link : http://wdc.custhelp.com/app/answers/detail/a_id/2686/~/how-to-map-a-wd-network-drive-on-a-mac This link offers several suggestions for a server address, but they are for My Book units and of course they don't work. Where, or how do I get a server address for my files on a My Cloud unit? I'm lost. I would appreciate any help. Thank you for your time.     Bill

    Welcome to the Community.
    In most cases, the Server Address is the current path that leads to the devices and/or shared folders. This means the IP address of your unit or your device name, and depending on your system, the exact location to the share with your data. You can obtain the current IP address used by your WD My Cloud in your router and also in your NAS's admin page.

  • How can i get the SMTP IP address for gmail

    Hello,
    sapian,
              I want to schedule a webi document through BI Launch Pad to users email address gmail.So while configuring the AdaptiveJobServer in CMC i need to give SMTP details such as
    Domain name:
    Host:
    Port:
    So for scheduling a webi document to a gmail user i need the above details for gmail SMTP server.Can any one suggest me how can i get the above details for gmail SMTP server.
    Thanks in advance.
    Regards,
    Kishor Kumar S

    Hi Hrishikesh,
    i have configured the 'stunnel.conf' file with the following details
    accept  =static ip address of the machine colon port number where the stunnel is installed
    connect = smtp.gmail.com:465
    and i saved the file.
    when i go to
    Start->Stunnel->service install
    it is giving error as follows
    Error binding ssmtp to (ip address and port number which i have given in stunnel.conf file 'accept')
    bind: No error (0)
    Can you suggest me the solution for the above error.
    Thanks in advance,
    Regards,
    Kishor

  • Mail Server "Type" and Mail Server "Address" for Incoming & Outgoing Mail

    First, the only browser I use is Mozilla's Firefox, the best browser hands down. Second, I have both a Yahoo email account and a Google "gmail" account that I use regularly (daily). I am trying to set up a mail washing program to rid myself of these ridiculous spammers & scammers, however I need to the the Incoming & Outgoing mail server "type" & "address" to do this and I seem to have guessed the yahoo settings, but I can't seem to get the Google gmail account set up properly. Yahoo settings that worked are: Server Type="POP3" and Server Address="pop.mail.yahoo.com", with advanced settings: Secure Authentication=Required, Secure Connection (SSL)=Required, Store Cached Emails=Yes, Server Port Number=995 (set), Pipelining=Enabled. The equivalent settings for the Google gmail account result in an error message = "Failed to log into POP3 Server". Of course user name & password triple checked, Type=POP3, Address=pop.mail.gmail.com, and , Address="pop.gmail.com" tried also, Port and other settings the same. Where can I find this info for both accounts? Tanks a million! -jw

    Yahoo and Gmail support should be able to help you.
    Not related to Firefox support, web mail doesn't use POP or SMTP protocols which is what email clients such as Thunderbird use for communicating with email servers.

  • How do I change the primary SMTP server address on my iPhone DOT-MAC accoun

    My original account smtp settings were for dot-mac. I am having ever increasing problems getting mail to send. I can find the settings for my primary SMTP server, but cannot edit or update them (currently smtp.mac.com), as they are all gray'd out and cannot be changed. I would like to update these settings to smpt.me.com. Is it necessary for me to delete this account in order to update the settings? That seems rather lame.

    What did not work? You could not add an additional SMTP server? It does not matter what the primary is listed as....turn it off. Then turn on the additional server you added.
    Better yet remove your .mac account and add it back as .me account.
    .Mac to MobileMe transition FAQ
    http://support.apple.com/kb/HT1932
    Message was edited by: iphone3Gguy

  • Email SMTP server setup for Adaptive Job Server

    Hi,
    I am trying to setup SMTP server to send mails while scheduling webi reports.
    I have given Domain name, smtp server name and port number 25.
    Once I do schedule, the schedule instance is showing success. But mails are being sent.
    Please guide me, how I can solve this issue.
    Regards
    Gowtham

    My problem has been resolved.
    Regarding that, probably you should check with SMTP server admin.
    For me, the shcedule was success but didn't receive mail. I think the SMTP server admins cleared any firewall filters.
    Not sure. Please check with your SMTP server admin.
    Regards
    Gowtham

  • WebDEV Server Address for iCloud Account

    Does my iCloud account have a WebDEV server address?  If so, what would it be?  Thanks for any insights.

    Thanks Winston.  Chased the link to find that the info related to my iCloud mailbox.  Was actually looking for a non-email related server address.  Am attempting to copy notes created within two different notes programs (Pages and Notebooks) via a WebDAV server.  Both want a server address which is somewhat elusive.  Thanks if you can further clarify.  DP

  • SMTP server settings for Ziggo

    I have a new iMac, and try to set up my Ziggo e-mail account. I have followed all instructions. I receive incoming e-mails from POP.Ziggo.nl, but I cannot send e-mails - the iMac cannot connect to the smtp.ziggo.nl server. Can anyone help? I have "un-ticked" the SSL settings. Everything seems OK, but same error message everytime "cannot send message using smtp.ziggo.nl server". Can anyone help????

    Hi Steve,
    Don't know if I can help you but I'll try.
    Do you have an email with ziggo.nl or something like casema.nl?
    If you do have something other than ziggo.nl then you have to change the smpt "address".
    For the last couple of days I've been getting a message that the Ziggo certificate is not trusted. This too is causing a problem with sending. What I do is wait until I get the message you have, then click on connect.

  • SMTP server problem for UTL_MAIL ..

    Hi ,
    I asked the Mail server admin and he said that the relaying is set to allow on the settings , the procedure still cant send to outside domains :
    SQL> alter system set SMTP_OUT_SERVER ='oursmtp';
    SQL>CREATE OR REPLACE PROCEDURE send_email
    AS
       BEGIN 
         UTL_MAIL.SEND(sender => '[email protected]',
                       recipients => '[email protected]',
                       cc => null,
                       bcc => null,
                       subject => 'Msg From Oracle DB',
                       message => 'test msg');
       EXCEPTION
       WHEN OTHERS THEN
         raise_application_error(-20001,'The following error has occured: ' || sqlerrm);  
    END;
    SQL>exec  send_email ;
    BEGIN send_email ; END;
    ERROR at line 1:
    ORA-20001: The following error has occured: ORA-29279: SMTP permanent error: 550 5.7.1 Unable to relay for [email protected]
    ORA-06512: at "SCOTT.SEND_EMAIL", line 15
    ORA-06512: at line 1
    Notes:
    *1- that when i send to within our domain there is not problems !*
    *2- when i send from the outlook of our domain to outside it send fine !*

    Try my method of sending mail using UTL_SMTP package. Of course, it's not my own method (which I created:)), but I use it to send mail with attachment :)
    http://kamranagayev.wordpress.com/2009/02/23/using-oracle-utl_file-utl_smtp-packages-and-linux-shell-scripting-and-cron-utility-together-2/
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • HT1277 My previous server address for me still appears in the list of my present address. How can I remove it from my computer?

    Every email I send automatically lists my old server email address, so with each email I must change my present email address as well as my CC email address (one is "sender", the other is CC). There must be somewhere in the computer where the old address is still stored. Can anyone help me. It's a bother to have to change the sender and the CC for every email.

    If you are running 10.6.8 (this forum) I'd suggest in the Mail menubar at the top, click on the  Window item and scroll down and select Previous Recipients.
    Locate your old email address and delete it.
    I don't know if 10.8 is the same, but you could try it and see. If not post back and I'll get your topic moved to that forum.

  • Why is Gmail SMTP server working for only one of two accounts?

    iPhone 4S, with all updates.
    I have two gmail accounts, primary and secondary.  I have both accounts set to use smtp.gmail.com, with password authentication for each account.
    Primary account can send just fine using SMTP.  Secondary account cannot send through it's "own" server (i.e., [email protected]) and sent messages failover to the primary account server ([email protected]).  Of course, that means recipients see the email as coming from the primary account, which is totally contrary to the reason I have it.
    Settings for smtp are identical, except for username and password.  I can send using the secondary account in Mail on my Mac, using that server, with messages showing properly (i.e. from [email protected]).
    Any ideas what's going on?

    On the iPhone that can't send or receive iMessages, make sure iMessage is On in Settings > Message.
    Also, try the tips in this Apple doc -> iOS: Troubleshooting Messages
    If you still can't send or receive iMessages
    To send and receive iMessages, your device must have a valid cellular or Wi-Fi data connection.
    iOS: Troubleshooting Wi-Fi networks and connections
    iOS: Troubleshooting cellular data
    Ensure that iMessage is turned on in Settings > Messages.
    iMessage registration validates your Apple ID for use with iMessage. If you are unable to activate iMessage, follow this article.
    If iMessage is unavailable either on the sending or receiving device, SMS will be used. You can turn this on or off in Settings > Messages > Send As SMS. Carrier messaging rates may apply.
    Verify that the Apple ID or phone number is listed in Settings > Messages > Send & Receive.
    Note: To receive iMessages sent to your phone number on your iPad, iPod touch, or Mac, you must meet the following requirements:
    iPad or iPod touch using iOS 6 or a Mac using OS X 10.8.2.
    Verify that you are signed in to your Apple ID account on Settings > Messages > Send & Receive.

  • Server address for itunes

    lost mine...need to update quickly from FeedForAll...thanks

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes forums.
    Regards.

Maybe you are looking for

  • VOFM routine - NO frame work

    Hi all,     By posting an inbound idoc we are creatin a purchase order and post goods issue for the purchase order.     When a purchase order is getting created an entry is getting updated in NAST table which trigger the idoc ORDERS05.     This idoc

  • Ipad 4 is rebooting in ios7 while using Safari.

    While browsing using safari for long time, my ipad 4 restarts automatically

  • Problem storing special characters (\, \n etc.) in the Properties file

    Hello, I am trying to store a string that contains special characters like \, \n, which are normally escaped using a \ character. If I try to save the Properties object into a file (using the store() method call), it doesn't store these escape charac

  • Applications Management is now Certified with EM 10gR5

    Applications Management and Change Management Packs Certified with Enterprise Manager Grid Control Release 5 For more details about the new features, documentation, and patches for the latest Application Management Pack and Application Change Managem

  • Adjust web dynpro buttons based on what iView you are in

    Hi, I have a situation where I am using the same Web Dynpro component / view in two different iViews in portal.  The web dynpro component is /SAPSRM/WDC_UI_SC_DOTC_BD.  This is for displaying / editing a shopping cart in SRM 7.0. When I am in one iVi