POP3 Internet E-Mail / BM

Hello,
in my test environment I have a GW 7 SP1 server via static NAT behind a BM
3.8 server. I want to allow a few users to check their internet POP3 E-Mails
with the GW-Client. I opened filters for SMTP and I need to add an exception
for POP3 now. But, do I have to add a POP3 exception for any address or only
for the GW server (192.168.A.B)?
Do I also have to add Port 53 for DNS for these workstation or is it only
nessesary for the GW server?
Thanks for your answer and suggestions.
Regards
Mirko

Hallo Cat,
thanks for your answer. I guess I have a major issue here. Maybe you could
help...
I made all filter exceptions exactly as you (or Craig's book) suggested, but
receiving emails from an internet email account still don't work. GW-Client
ended up with a "Service not available" message and Outlook Express ended up
with a POP3 error message. I attached a file that shows the general filters
made by me (for information 192.168.13.14 is the Mailserver) except the
POP3 filters you suggested.
Because Outlook Express is not receiving a POP3 email from an internet mail
account even when ipflt is not loaded, I assume that it can't be a filter
problem. So I tested some major things: Again, pinging an IP from a
workstation is not possible (because of proxy, I guess). A nslookup from a
workstation to an internet address is possible, because of the DNS forward
from my internal DNS server to my ISP's DNS server (which made by the
dns/udp-st filter of the attached filter list). So far so good.
But I have to idea why, even under Outlook with no filters loaded POP3 is
still not possible... Do you have an idea?
Regards
Mirko
"Caterina Luppi" <[email protected]> schrieb im Newsbeitrag
news:[email protected]...
> Mirko,
>
>> in my test environment I have a GW 7 SP1 server via static NAT behind a
>> BM
>> 3.8 server. I want to allow a few users to check their internet POP3
>> E-Mails
>> with the GW-Client. I opened filters for SMTP and I need to add an
>> exception
>> for POP3 now. But, do I have to add a POP3 exception for any address or
>> only
>> for the GW server (192.168.A.B)?
>
> If these users are going to contact an external pop server (for
> instance, gmail) then the GW server isn't involved at all. You will only
> need an exception for SMTP and POP3 for the IP addresses of the
> workstations of these users.
>
> the exceptions you need are the following:
>
> packet type: TCP source port 1024-65535 dest port 110 STATEFUL
> source interface: private
> dest interface: public
> Source IP: the Ip address of the workstation
> DEst IP: the IP address of the POP3 server
>
> packet type: TCP source port 1024-65535 dest port 25 STATEFUL
> source interface: private
> dest interface: public
> Source IP: the Ip address of the workstation
> DEst IP: the IP address of the SMTP server
>
>> Do I also have to add Port 53 for DNS for these workstation or is it only
>> nessesary for the GW server?
>
> if you don't have an internal DNS server that can resolve external Ip
> addresses you will also need an exception for DNS, again, for the Ip
> address of the workstations. This is the exception:
>
> packet type: UDP source port 1024-65535 dest port 53 STATEFUL
> source interface: private
> dest interface: public
> Source IP: the Ip address of the workstation
> DEst IP: the IP address of the SMTP server
>
> Hope this helps.
>
> --
> Cat
> NSC Volunteer Sysop

Similar Messages

  • BB 8700g with Internet E-MAIL POP3 and SMTP

    I have 2 separate Internet E-Mails Accounts with POP3 and SMTP and no Exchange-Server Accounts. I want to replicate my Internet e-mails directly to my Blackbary System without BB Desktop Software
    How can I ajast my Blackbary System to do this? 

    Hi and Welcome to the Forums!
    First -- you must have the proper account with your carrier. A generic data plan is usually not adequate. Rather, what is often called The Blackberry Data Plan is required. Contact your carrier to be sure that you have an account with them that provides you usage of their Blackberry Internet Service (BIS).
    Second, follow these instructions for configuring your email on your BB:
    http://na.blackberry.com/eng/support/blackberry101/setup.jsp#tab_tab_email
    Good luck and let us know!
    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

  • After connecting to Internet, clicking Mail icon, why won't Mail open?

    After connecting to internet,clicking Mail Icon, why won't Mail open?

    Try opening Mail from the Applications folder. Your Dock icon may be damaged.

  • Hi, i can connect to the internet but mail will not download and i cannot open webpage ?? please help

    hi, i can connect to the internet but mail will not download and i cannot open a webpage?? any ideas

    Try #2 and #3 in link below. If neither work, you most likely have a hardware issue.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • Only 274 mails are coming when using pop3 with java mail

    Only 274 mails are coming from GMAIL when using pop3 with java mail. but there are more than 3000 mails.
    I'm not getting the reason, code is given below:
    public static void main(String[] args) {
            // SUBSTITUTE YOUR ISP's POP3 SERVER HERE!!!
    //        String host = "pop.bizmail.yahoo.com";
    //        final String user = "[email protected]";
    //        final String password = "xxx";
            String host = "pop.gmail.com";
            final String user = "gauravjlj";
            final String password = "xxx";
            String subjectSubstringToSearch = "Test E-Mail through Java";
            try {
                 Properties prop = new Properties();
                prop.setProperty("mail.pop3.socketFactory.class",
                                            "javax.net.ssl.SSLSocketFactory");
                prop.setProperty("mail.pop3.socketFactory.fallback", "false");
                prop.setProperty("mail.pop3.port", "995");
                prop.setProperty("mail.pop3.socketFactory.port", "995");
                prop.put("mail.pop3.host", host);
                prop.put("mail.store.protocol", "pop3");
                Session session = Session.getDefaultInstance(prop);
                Store store = session.getStore();
                System.out.println("your ID is : "+ user);
                System.out.println("Connecting...");
                store.connect(host, user, password);
                System.out.println("Connected...");
                // Get "INBOX"
                Folder fldr = store.getFolder("INBOX");
                fldr.open(Folder.READ_ONLY);
                int count = fldr.getMessageCount();
                System.out.println(count  + " total messages");
                // Message numebers start at 1
                for(int i = 1; i <= count; i++) {
                                            // Get  a message by its sequence number
                    Message m = fldr.getMessage(i);
                    // Get some headers
                    Date date = m.getSentDate();
                    Address [] from = m.getFrom();
                    String subj = m.getSubject();
                    String mimeType = m.getContentType();
                    System.out.println(date + "\t" + from[0] + "\t" +
                                        subj + "\t" + mimeType);
                // Search for e-mails by some subject substring
                String pattern = subjectSubstringToSearch;
                SubjectTerm st = new SubjectTerm(pattern);
                // Get some message references
                Message [] found = fldr.search(st);
                System.out.println(found.length +
                                    " messages matched Subject pattern \"" +
                                    pattern + "\"");
                for (int i = 0; i < found.length; i++) {
                    Message m = found;
    // Get some headers
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    System.out.println(date + "\t" + from[0] + "\t" +
    subj + "\t" + mimeType);
    Object o = m.getContent();
    if (o instanceof String) {
    System.out.println("**This is a String Message**");
    System.out.println((String)o);
    else if (o instanceof Multipart) {
    System.out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
    System.out.println("It has " + count3 +
    " BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    // Part are numbered starting at 0
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
    System.out.println( "BodyPart " + (j + 1) +
    " is of MimeType " + mimeType);
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    System.out.println("**This is a String BodyPart**");
    System.out.println((String)o2);
    else if (o2 instanceof Multipart) {
    System.out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
    System.out.println("It has " + count2 +
    "further BodyParts in it**");
    else if (o2 instanceof InputStream) {
    System.out.println(
    "**This is an InputStream BodyPart**");
    } //End of for
    else if (o instanceof InputStream) {
    System.out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    // Assumes character content (not binary images)
    int c;
    while ((c = is.read()) != -1) {
    System.out.write(c);
    // Uncomment to set "delete" flag on the message
    //m.setFlag(Flags.Flag.DELETED,true);
    } //End of for
    // "true" actually deletes flagged messages from folder
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    Please tell me.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Is it possible that GMail only allows access to untagged emails via POP3? Or only to emails from the last x days?
    POP3 is the older email retrieval protocol (IMAP4 is the more current one) and only has very limited support for folders (or anything but a single inbox, really). It's quite common that POP3 only allows access to a subset of all emails stored by a provider.

  • Why do I have to reboot my iPhone 6 every hour to have internet and mail service???

    Every hour or two I have to power off my 6 then power on in order to have internet and mail service.  Is anyone else having this problem?

    I'm having the same exact issue. I have the same phone/OS. Just switched from AT&T to Verizon so I wasn't sure whether it was my service or the phone. The same connectivity issues are happening to me with things like My Fitness Pal or Facebook notifications. Fitness app won't load or connect and for Facebook, I'll get a notice that I have one, I go to FB and it won't load the notifications or even load new stories on there for that matter. So AGAIN, I have to restart and POOF! I can use FB, Fitness App, etc AND I have 20 emails all of a sudden. So frustrating!

  • POP3 Business E-Mail CANNOT SEND HELP PLEASE

    POP3 Business E-Mail CANNOT SEND HELP PLEASE
    PLEASE HELP I have two business email accounts an cannot send with either. Just lost a big contract because I answered contract questions and then I find out it did not send 3 days later. I have always had (hide sent emails enabled on all previous BlackBerry phones) We need help. FREE HELP NOT COST PER CALL BASIS. This is BlackBerry's problem not ours.

    Hey all,
    If you have your network service providers SMTP server inputted and still experiencing trouble.  Then we suggest contacting us so we can gather logs to find the root cause.
    Please contact your network service provider and ask to be transferred to BlackBerry.
    This will help us resolve this new issue.
    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)!

  • IPad is tethered to iPhone.  Internet and mail will not open

    My iPad is successfully tethered to my iPhone.  I have been reading mail and surfing the internet on the tethered iPad for weeks.  Nothing has changed about my Verizon coverage.  Suddenly the Internet and mail will not open on the iPad. 
    Any helpful suggestions would be greatly appreciated.
    [email protected]

    Ox4dpl-
    Try resetting the iPad's network.  Go to Settings-General-Reset-Reset Network Settings.  You will need to reconnect the iPad's WiFi.
    Fred

  • HT1349 my phone keeps freezing on settings, I cannot make or receive a call but everything else is working including internet and mail. where it should be showing the reception bars it is only showing a broken line. How do I resolve this?

    my phone keeps freezing on settings, I cannot make or receive a call but everything else is working including internet and mail. where it should be showing the reception bars it is only showing a broken line. How do I resolve this?

    If you are not showing reception bars, then I don't know how the data is working? Have you tried doing a reset? Hold the sleep/wake and home buttons together until you see the Apple logo and then release. After the phone restarts, check to see if it works. If that doesn't help, then try removing the SIM card, then reinserting it. If that doesn't help, then contact your carrier for assistance in calling.

  • New iPhone 5 - internet and mail reception problems?

    I just acquired a new iPhone 5. I have regular reception internet and mail reception problems. The internet on both Wifi and provider network drops out on a regular basis, although reception signals of both wifi and network are strong. When turning off the phone and restarting the internet comes back for a short while and loses connection again. Has somebody else experience similar difficiulties, If yes how can this be fixed.

    I just acquired a new iPhone 5. I have regular reception internet and mail reception problems. The internet on both Wifi and provider network drops out on a regular basis, although reception signals of both wifi and network are strong. When turning off the phone and restarting the internet comes back for a short while and loses connection again. Has somebody else experience similar difficiulties, If yes how can this be fixed.

  • Every hour or two I have to power off my 6 then power on in order to have internet and mail service.

    Every hour or two I have to power off my 6 then power on in order to have internet and mail service. Is anyone else having this problem
    This question was posted earlier and has disappeared...however I am having the same issues. Any way to solve this?

    I'm having the same exact issue. I have the same phone/OS. Just switched from AT&T to Verizon so I wasn't sure whether it was my service or the phone. The same connectivity issues are happening to me with things like My Fitness Pal or Facebook notifications. Fitness app won't load or connect and for Facebook, I'll get a notice that I have one, I go to FB and it won't load the notifications or even load new stories on there for that matter. So AGAIN, I have to restart and POOF! I can use FB, Fitness App, etc AND I have 20 emails all of a sudden. So frustrating!

  • Outlook express and Bt internet e mail

    I have had bt internet for many years, probably 12 years. I have always used outlook express to download and view my e mails. However, about 6 months ago I started having error messages which I will post below. The symptoms are these. If I have several e mails sitting on the server, it will download say 3 of them and not download the rest, an error message will come up. If I try send and receive again it will download the 3 same duplicate e mailes and then an error message will come up. I have one main account and 3 sub accounts, the same proble occurs on all three accounts. Other times the e mails will download to OE no problem
    Message number 3 could not be retrieved. Account: 'mail.btinternet.com', Server: 'mail.btinternet.com', Protocol: POP3, Server Response: '-ERR inactivity timeout', Port: 110, Secure(SSL): No, Server Error: 0x800CCC90, Error Number: 0x800420CD
    Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Account: 'mail.btinternet.com', Server: 'mail.btinternet.com', Protocol: POP3, Port: 110, Secure(SSL): No, Error Number: 0x800CCC0F
    Does any one have a solution to this problem, it's seems that it's a common problem when I do a search on google.
    Roger L

    gw3xjc wrote:
    When I talked to the BT lady who took control over my pc she did not seem to want to know anything about the fact it was a common fault. What has changed?????It only started happening about 6 months ago. I just can't use the e mail now unless I go onto Yahoo and look at it directly, it's a real pain. Any suggestions, is it only applicable to bt/yahoo, would it be any different if I change providers or am I going completely down the wrong track, would it work better with Outlook.
    Rog
    gw3xjc, 
    There is several variants of this problem.
    The most common is due to a slowish internet connection and largish emails usually with attachments. The slower the connection the smaller the emails that cause the problem. 
    What happens is the server times out prematurely trying to download the largish email and as the transaction is not completed all previous emails in that transaction are not marked as having been downloaded so they are downloaded again when you next do a send/receive.
    (If you have different symptoms please elaborate)
    There are a few ways that you can possibly alleviate it and/or cure it.
    1. A cure has been suggested in this thread in the last few posts:
    http://community.bt.com/t5/Other-BB-Queries/Windows-Mail-Server-Terminating-Connection-when-download...
    2.  You can increase the server timeout value using the advanced section of the Account properties in OE.
         Also stop OE from checking for emails automatically and send/receive manually.
    3.  You can set up a message rule in OE that checks the size of the email and if bigger than a value you specify Not download it from the server.    This should allow all smaller emails to be downloaded.   You of course need to log on via webmail and check the large emails that are left on the server periodically.
    4. You can try other providers eg Yahoo.co.uk  (non BT variant and not yahoo.com) Gmail etc that do not seem as prone to the problem.
    5. Using Outlook does not help and probably makes the problem worse.

  • Problem with internet and mail configuration(From France)

    Hey x)
    I just got my Blackberry yesterday (I'm from France) with Universal Mobile- Bougues Telecome, forfait bloqué pour BlackBerry.
    In that "package" i have SMS/mms ,internet and emails unlimited.
    But i can't go to internet , its not working and when I'm trying to configure the mail option in "advanced option" , I don't have any kind of confirmation message.
    I tried on the website but I got that error message:
    "Cannot create account:
    This BlackBerry(R) device is not registered with your wireless service provider.
    Please register this device and verify that the URL of the current web site matches
    the one provided by your wireless service provider.
    To register:
    1. In the Application list on your device, click Options, or click Settings Options.
    2. Click Advanced Options > Host Routing Table.
    3. Click the Menu key and click Register Now.
    If the error persists, contact your wireless service provider."
    And so as I said, I did that manipulation but I don't have a confirmation when I put "host routing table".
    And In the email configuration I just have the professional thing.
    Can you please help me ?

    Do you have a BlackBerry Data Plan enabled on your account with your carrier or mobile provider?
    You must, in order to get the RIM push email functions you are looking for, as well as addtional BlackBerry data services such as the internet browser, Facebook for BlackBerry, BlackBerry Messenger, and much more.
    So, call your carrier and inquire about having the BlackBerry Data Plan added to your account.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • IMac user has internet; but Mail, Safari in Death Spin

    I am helping a friend who has had a new iMac (Snow Leopard) for three months. She lives on an island with no friendly local Genius Bar. Three days ago Mail and Safari went into a death spin. All Mail accounts are spinning fruitlessly. Safari will not load pages, saying it is not connected to the internet. Skype, however, functions normally and I have been using Skype to try to sort out the problem. This has me stumped. I've tried all the usual things, the computer has been rebooted umpteen times, we've disabled and enabled Mail accounts one by one. We've even turned off the firewall, just in case. I cannot understand how the problem, which came on suddenly, concerns Mail and Safari while Skype has no trouble. Had it not been for Skype, I would have blamed the internet connection. Any helpful noises would be appreciated. (All software, including OS X, is up to date).

    What very likely happened is that either your friend's ISP's DNS server(s) went down, or DNS service via their router went down.
    DNS is what is responsible for converting names such as "apple.com" to numeric IP addresses like "17.112.152.57."
    Skype doesn't use DNS, as it has numeric IP addresses hard coded into the application.
    So if DNS isn't working properly, attempting to visit any site by name won't work, but Skype will.

  • PC user switching to Mac Pro - Internet connection/Mail questions

    Hello:
    I am a long time PC user that is going to switch to the Mac Pro. I have two questions relating to the Internet/Mail.
    (1) On my PC, I have an ADSL modem to connect to the internet. Can I plug that directly into my Mac Pro's Gigabit Ethernet port, or do I need other Apple Hardware? I have no interest in going wireless.
    (2) If/When Parallels is working for the Mac Pro, can I use Apple Mail, then attach files from Windows Office products (Word, Excel, Visio, etc) via Parallels. I want to migrate to Apple products, but at this time, I still need my Office products.
    thanks in advance for helping this Mac newbie.

    Welcom to the Apple Forums!
    If your modem has a ethernet connection, then you can
    connect it with a cable to the Gigabit networkport on
    your Mac. Just like the same as Windows.
    Whit parallels workstation is it possible to acces
    the Mac disk. So, you can save from windows on your
    macdisk. And then, you can acces it with mail.
    You said: _from Windows Office products (Word,
    Excel, Visio, etc) via __
    Remember, there are also office products for the Mac.
    When you are using Parallels to run Windows, it is
    not possible to acces de Windows HD from Apple. So if
    you want to share files betwee Windows and Mac, you
    have to do ut from windows. Windows can read/write
    the Mac disk.
    You can set up a share folder with Parallels between Mac and the PC side which is what i do. Maybe work on something on XP than put back in the share folder than see it on the other side . But seeing externals and such from the PC side i can't seee them but the share folder does work. I switch my office to the mac side and it works fine and use Entourage as my mail client, looks and smells like outlook

Maybe you are looking for