Email not accessible from Blacberry using BB Internet service

Hi all,
I received several time this message and have difficulties to send/receive emails (see below).
Using BB Internet Service There is nothing else to do then subscribe to the service.
Can anyone help on that ?
Thanks beforehand
From: BlackBerry Internet Service
To: Ahmad Mihyar
Subject:
Sent: Sep 22, 2008 21:58
 This email account is not currently accessible by your BlackBerry device, so you may be experiencing a delay in email delivery. This issue may be caused by a temporary problem with your email provider. BlackBerry Internet Service will continue attempting to access this account.
 Email Account Information:
Email Account: xxxxxxxxxxxxxxxxxxxxx
Email: xxxxxxxxxxxxxxxxxxxxx
UserID: xxxxxxxxxxxxxxxx

Well, I have some good news.  After spending an hour on the phone with T-Mobile and RIM I finally got ours working again.  Here is what they had me do.  I hope this works for you.
First they had me log into my BlackBerry account online and delete the mailbox.
Next I recreated the mailbox but during the first step I was told to enter the email address but leave the password blank and then click Next
The next screen had two radio buttons: "Re-enter email address and password" or "I will provide the settings to add this email account".  I was told to select the latter and click Next.
Again two radio buttons: "This is my personal email account" or "This is my work email account".  Again, select the latter and click Next.
Next there were three radio buttons, I selected the one under "Outlook Web Access" and clicked Next.
Finally you can re-enter the Outlook Web Access URL, User name, Password, Email address, and Mailbox name.
I filled out everything the same EXCEPT the Outlook Web Access URL.
Here is an example of what our OWA URL is like:  http://email.companyname.com
that is what we always used to use and is where we send our users to log in.  Going to this site would then forward you to something like this: http://mail.companyname.com/exchange
where you would enter your username and password.
So, instead of entering our OWA URL in the BlackBerry setup as http://email.companyname.com as we normally do he had me enter it in as http://mail.companyname.com/exchange
I clicked Next again and hard reset my phone.  A few test messages later I confirmed it was indeed receiving mail again.
I hope that makes some sense to you guys and that it works for you.  If you have any questions about what I am talking about I will try to reply as soon as possible.

Similar Messages

  • Email account is not currently accessible using BB internet service

    Hi,
    I got message from RIM that my email account is not currently accessible by my BB device since Friday, August 20, 2010. Before that date is fine.
    The message is exactly the same as in this forum http://supportforums.blackberry.com/t5/BlackBerry-Curve-BlackBerry-8300/Email-not-accessible-from-Bl... but following the instructions did not solve the problem.
    Our company mail server running using Postfix with IMAP, IMAP-SSL, POP3, POP3-SSL supported.
    We can access the mailbox either using Webmail or mail client software such as MS Outlook, Thunderbird, etc.
    We also already reset the configuration of the BB using Email Settings but still the email did not come to our BB.
    Your help is highly appreciated.
    Thanks beforehand

    This problem has been solved. The problem is in RIM DNS. Their DNS can not resolve to my domain *.net-zap.com eventhough testing using cache.opendns.com to *.net-zap.com is fine.

  • My bookmarks used to appear in dropdown menu from the address bar on my iMac G5. I switched to Mac Notebook & from Leopard to Lion. Now my bookmarks are not accessible from the address bar anymore (the line where you type in the website address)

    '''My bookmarks used to appear in dropdown menu from the address bar on my iMac G5. I switched to Mac Notebook & from Leopard to Lion. Now my bookmarks are not accessible from the address bar anymore (the line where you type in the website address)'''

    There appears to be a problem with Firefox 20 with UNC paths when using roaming profiles on a server.
    *[[/questions/955140]] why is the 20.0 address bar unresponsive?
    This is currently investigated and tracked via this bug report.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=857672 bug 857672] - Address Bar not working (roaming profiles;UNC path support OS.File)
    <i>(please do not comment in bug reports: [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html])</i>

  • Why are my emails not deleting from all devices when deleted from one?  I have iCloud set up and turned on. I have ipad2, iphone5 and a Mac. What am I doing wrong?  Thank you

    Why are my emails not deleting from all devices when deleted from one?  I have iCloud mail set up and turned on. I have ipad2, iPhone 5 and a Mac desktop. What am I doing wrong?  Thank you.

    It depends on the type of email account you are using, not on iCloud.  If you are using an IMAP or exchange account, when you delete from one device, it is deleted from all devices.  If you are using a POP (POP3) account, it won't.  (iCloud email, Gmail and Yahoo are all IMAP accounts.)

  • Why are protected fields not-accessible from sub-classed inner class?

    I ran across a situation at work where we have to sub-class an inner class from a third-party package. So, it looks something like this...
    package SomePackage;
    public class Outer {
       protected int x;
       public class Inner {
    package OtherPackage;
    public class NewOuter extends Outer {
       public class NewInner extends Outer.Inner {
    }Now the NewInner class needs to access protected variables in the Outer class, just like the Inner class does. But because NewOut/NewInner are in a different package I get the following error message.
    Variable x in class SomePackage.Outer not accessible from inner class NewOuter. NewInner.You can still access those protected variables from the NewOuter class though. So, I can write accessor methods in NewOuter for NewInner to use, but I am wondering why this is. I know that if NewOuter/NewInner are in the same package as Outer/Inner then everything works fine, but does not when they are in different packages.
    I have to use JDK1.1.8 for the project so I don't know if there would be a difference in JDK1.2+, but I would think that nothing has changed. Anyway, if you know why Java disallows access as I have detailed please let me know.

    Although I don't have the 1.1.8 JDK installed on my system, I was able to compile the following code with the 1.3.1_01 JDK and run it within a Java 1.1.4 environment (the JVM in the MSIE 5.5 browser). As long as you don't access any of the APIs that were introduced with 1.2+ or later, the classes generated by the JDK 1.2+ javac are compatible with the 1.1.4+ JVM.
    //// D:\testing\SomePackage\Outer.java ////package SomePackage ;
    public class Outer {
        protected int x ;
        public Outer(int xx) {
            x = xx ;
        public class Inner {
    }//// D:\testing\OtherPackage\NewOuter.java ////package OtherPackage;
    import SomePackage.* ;
    public class NewOuter extends Outer {
        public NewOuter(int xx) {
            super(xx) ;
        public class NewInner extends Outer.Inner {
            public int getIt() {
                return x ;
    }//// D:\testings\Test.java ////import OtherPackage.* ;
    import java.awt.* ;
    import java.applet.* ;
    public class Test extends Applet {
        public void init () {
            initComponents ();
        private void initComponents() {
            add(new Label("x = ")) ;
            int myx = new NewOuter(3288).new NewInner().getIt() ;
            TextField xfld = new TextField() ;
            xfld.setEditable(false) ;
            xfld.setText(Integer.toString(myx)) ;
            add(xfld) ;
    }//// d:\testing\build.cmd ////set classpath=.;D:\testing
    cd \testing\SomePackage
    javac Outer.java
    cd ..\OtherPackage
    javac NewOuter.java
    cd ..
    javac Test.java//// d:\testing\Test.html ////<HTML><HEAD></HEAD><BODY>
    <APPLET CODE="Test.class" CODEBASE="." WIDTH=200 HEIGHT=100></APPLET>
    </BODY></HTML>

  • I am really pisssed off at two characteristics of Firefox 4: Size and position do not stick, and view menu selections do not stick from one use to the next.

    I am really pissed off at two characteristics of Firefox 4: 1) Toolbar selections don't stick and 2) firefox window position and size settings do not stick from one use to the next.
    The Bookmarks toolbar is the selection that does not stick, and Firefox, even though I set it to the size and position I want every time I use the program, always loads flush left, full top to botton, and about 1/3 of the width of the screen EVERY TIME it loads. These two characteristics are extreme pains in the ass.

    This problem occurs on the Juno webmail site?
    I assume you are doing something different than just correcting the squiggly red underlined words. How are you spell-checking the email: using an add-on or using a feature of the Juno webmail site? If it's an add-on, which one is it?

  • Email not downloaded from server

    HI my iPhone 5 doesn't always let me open my emails. "Email not downloaded from the server" appears on random emails, usually ones with pictures?? help!!

    This happens to me too from time to time.  Seems to be connected to the size of the download attached to the mail and the fact that you are using the mobile data network. Try to use Wi-Fi instead, this works for me.

  • Method not accessible from other classes

    Hi,
    I ve defined a class and would like to create an instance of it from another class. That works fine, I am also able to access class variables. However the class method "calcul" which is defined as following, is not accessible from other classes:
    class Server {
    static String name;
    public static void calcul (String inputS) {
    int length = inputS.length();
    for (int i = 0 ; i < length; i++) {
    System.out.println(newServer.name.charAt(i)); }
    If I create an instant of the class in the same class, the method is then available for the object.
    I am using JBuilder, so I can see, which methods and variables are available for an object. Thanks for your help

    calcul is a static method, that means you do not need an instance of server to run this method. This method is also public, but your class Server is not, your Server class is package protected. So only classes within the same package has Server can use its method. How to use the calcul method?// somewhere in the same package as the Server class
    Server.calcul( "toto" );

  • Why am i not receiving apple itunes receipts in my email not more? i used to get them

    why am i not receiving apple itunes receipts in my email not more? i used to get them

    I too stopped receving receipts recently. I look at my account and all seems fine. There does not seem to be a setting, though, for having receipts sent.
    What is going on?
    Nick

  • How can i add my outlook email to my ipad without useing the Exchange Service?

    Please help me in this, How can i add my outlook email to my ipad without useing the Exchange Service?

    I'm afraid you've posted in the wrong place. This is a technical forum around a particular product called 'SharePoint'. This does talk to Exchange and Outlook in places but we don't specialised in either of those. You should have a look for one of the
    generic Outlook support forums or contact your IT department if it's a work related account.

  • Why can't my emails get sent on iPad they used to without problem. And not don't. I have Internet service but no email service, what happened?

    HHave Internet service but no email service on my ipad.  Why?  I always have to plug in my computer to send emails. It is a big problem I am getting worn out dealing with. Help?

    Hey there Criseal,
    It sounds like you are unable to get your email on your iPad suddenly. I'd recommend these troubleshooting steps from the article found here, named:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Log in to your email provider's website to make sure that the account is active and the password is correct.
    Make sure your settings are correct using Mail Settings Lookup.
    Restart your iOS device.
    Delete the affected email account from your device.
    Tap Settings > Mail, Contacts, Calendars.
    Tap the affected email account.
    Tap Delete Account.
    Add your account again.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Site not accessible from the Load balanced web front end server - sharepoint 2010

    I have a production environment with 2 WFE's(sp-wfe1 & sp-wfe2), 2 APP's and 2 SQL clustered VM's.
    2 WFE's are load balanced using hardware load balancer.
    An A-Record(PORTAL) is created in DNS for the virtual IP of the load balancer which points to the 2 WFE's.
    A web application is created on the WFE's on port 80.
    alternative access mapping is configured and the load balanced record "http://PORTAL" is used under the default zone.
    Under IIS I have edited the bindings for the sharepoint site at port 80 and added the HOSTNAME as PORTAL.
    Result: The site is accessible from outside the server and works fine.
    ISSUE: The site is not accessible within the WFE's(sp-wfe1 & sp-wfe2).
    When I browse the site from the WFE's server it ask for the credentials and when I enter the credentials and click OK it ask the credentials again and again and in the end displays a blank page.
    Kindly help me in this issue because I am clueless and couldn't find anything helpful on the internet. 
    Regards,
    Mudassar
    MADDY-DEV Forum answers from Microsoft Forum

    Loop back check.
    http://www.harbar.net/archive/2009/07/02/disableloopbackcheck-amp-sharepoint-what-every-admin-and-developer-should-know.aspx

  • HT2480 email not deleting from server when deleted from ipad

    messages are not being deleted from server when deleted from ipad

    Hello,
    You need to tell us what the email service is. BES? BIS -- and, if so, what email provider? If BES, then see your BES admins. If BIS, then expect it to function in accordance with this KB.
    Otherwise, you can try the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB):
    1) Register HRT
    Homescreen > Options > Advanced Options > Host Routing Table > (it does not matter which line is current) > Register Now
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should try deleting and re-adding your BIS conduits for the affected email accounts.
    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

  • Files not accessible from local view

    Hello,
    I recently got a new computer (iMac 11,3) and transferred all files from a backup drive. Since then, the local view in Dreamweaver's file panel does not display the files in my local root folder. The files are visible and accessible from the desktop. I can open them in Dreamweaver by dragging them onto the Dreamweaver icon, but I can't put them to the remote server (get and put commands are grayed out). I've edited the site settings, and defined a new site with a new local root folder, but still have the same problem. I'm using DW cs3. The old computer was an iMac G5, with a non-Intel processor. I hope that's not the problem.
    Thanks!

    Local:
    Site name: Neal homepage
    local root folder: Sesostris:Users:nskorpen:Documents:Neal homepage:
    Default image folder: (blank)
    Links relative to : Document
    HTTP address: http://www.nealskorpen.com/
    case sensitive links: off
    cache: disabled
    Remote:
    Access: FTP
    FTP host: www.nealskorpen.com
    Host directory: /public_html/
    login and password: I'm not going to list these here. I tested the
    connection and they worked.
    Use passive FTP: disabled
    Use IPv6 transfer mode: disabled
    use firewall: disabled
    use SFTP: disabled
    Maintain synchronization information: enabled
    Automatically upload files to server on save: disabled
    check in/out: disabled

  • Email Not Sending from App

    Hello,
    I am using Application Express 2.1.0.00.39 installed by Oracle 10g XE.
    I am unable to send email using the following code:
    Declare
    P7_STATUS Varchar2(8);
    Begin
    HTMLDB_MAIL.SEND(
    p_to => '[email protected]',
    p_cc => '',
    p_from => 'UHR Issue Request System',
    p_body => 'The assistance request: '||:P7_ISSUE_SUMMARY||', has been received and will be addressed shortly.',
    p_subj => 'IM&T Assistance Request');
    end;
    My email configuration is set to the proper smtp address and port address. I checked the mail queue and the email is still there. When I manually attempt to send the email, I receive a confirmation message 'Successfully sent mail.' but the email is still visible in the queue.
    I had someone check the email logs on the smtp server and they do not show any email being sent from my IP address.
    I've looked at all of the posts on the forum and tried them to no avail. Any help is appreciated.

    This is what I get from the sql command option:
    Pushing email 28246014874767726
    ORA-29277: invalid SMTP operation
    ORA-06512: at "FLOWS_020100.WWV_FLOW_MAIL", line 345
    ORA-29279: SMTP permanent error: 555 5.5.4 Unsupported option: Issue
    Pushing email 28259028324547729
    ORA-29277: invalid SMTP operation
    ORA-06512: at "FLOWS_020100.WWV_FLOW_MAIL", line 345
    ORA-29279: SMTP permanent error: 555 5.5.4 Unsupported option: Issue
    Pushing email 28262110756017570
    ORA-29277: invalid SMTP operation
    ORA-06512: at "FLOWS_020100.WWV_FLOW_MAIL", line 345
    ORA-29279: SMTP permanent error: 555 5.5.4 Unsupported option: Issue
    Pushing email 28265016699113957
    ORA-29277: invalid SMTP operation
    ORA-06512: at "FLOWS_020100.WWV_FLOW_MAIL", line 345
    ORA-29279: SMTP permanent error: 555 5.5.4 Unsupported option: Issue
    Pushing email 28267124345692737
    ORA-29277: invalid SMTP operation
    ORA-06512: at "FLOWS_020100.WWV_FLOW_MAIL", line 345
    ORA-29279: SMTP permanent error: 555 5.5.4 Unsupported option: Issue
    Pushing email 28269402669700750
    ORA-29277: invalid SMTP operation
    ORA-06512: at "FLOWS_020100.WWV_FLOW_MAIL", line 345
    ORA-29279: SMTP permanent error: 501 5.1.7 Bad sender address syntax
    Statement processed.
    0.15 secondsDBMS Output
    Does any of tha make sense to you?

Maybe you are looking for

  • Photoshop CS3 won't start anymore

    I use Photoshop CS3 with OSX 10.4.  Everything has been working great until reccently.  I had a huge job and the amount of memory it took was causing 'scratch dick full' errors.  One day I pulled Photoshop up and it got part way through opening and c

  • How to get the size of the backed up datafile in a backup set with rman?

    Oracle 10gR2 and catalog is in place. Since RMAN only backups the used blocks(does not take backup from NEVER USED blocks), what can be the explanation of some extra space during backups? And also how to trace this space allocation by datafile with v

  • Getting SSL certificate via LDAP connection

    Hello... I'm trying to get the SSL Certificate from a Novell eDir directly by connecting through ldap. The object dn is: cn=SSLSERVICES1024 - SERVICES, ou=gip, o=testorg and when I list all the attributes are: =========== nDSPKICertificateChain: 0 ho

  • Hello disappeared from my version 37.01. Not in customize or config file, Nowhere, Need to restore.

    Hello, I was doing other work in my browser, clicked on something in my toolbar and "Hello" button disappeared. So did "Forget me" a short while later. While I've been able to find the forgetme button and put it back, the "Hello" button is no longer

  • I'm unable to download itunes.

    I had itunes and quicktime downloaded to my pc but when I tried to update itunes, itunes would just freeze.  I've tried downloading itunes directly from the itunes website but it would just take me to the thank you for dowloading itunes page and noth