How do I use Mail on a shared internet connection

Hello All;
I've tried searching the forums, and either I'm using the wrong search terms, or this question is so basic no one else is having problems....
My wife and will sometimes be in a hotel that has an ethernet cable for internet access. We both travel with our laptops (sad life, I know...) and use the internet. We usually plug the cable into her MBP and then I set up internet sharing to my iBook. Which works fine, except that Mail can't make a connection and I have to check my email accounts by going to the browser interface for each. I have several, which is why I set Mail up to work with them. Not a big problem, but annoying. Finally, sitting here in Ottawa I decided to do something about it since I'm waiting for it to warm up a bit - its something like -20C this morning.
Is it as simple as turning off the MBP's firewall? Or adjusting it? I don't like playing with the security settings, if I don't have to, for her MBP because it is vital for her work.
We are both using 10.4.11, and as stated above - she has a Mac Book Pro and I'm using a G4 iBook.
Thanks in advance....
Brrrrr - its cold out there.....

Hello Seth.
I believe you must go to System Preferences > Sharing > Firewall on the computer that shares its Internet connection and enable the ports that Mail needs, i.e. click on the New button, choose Other from the Port Name popup menu to name that setting however you wish, and specify the port number(s) there.
Also, go to Apple Menu > System Preferences > Network, choose Network Port Configurations from the Show popup menu, and make sure that the configuration used to connect to Internet appears at the top of the list on each computer.
You may also find the following articles useful:
TCP/IP: Ports And Firewalls Explained
"Well Known" TCP and UDP Ports Used By Apple Software Products

Similar Messages

  • HT2500 how do I use Mail when I have a second e-mail address?

    How do I use Mail when I have a second e-mail address?

    If you are running Snow Leopard:
    Go under the Mail menu and choose Preferences, then choose the Accounts tab.  Under the box on the left you will see a + , click on it.  This will add a new account.  Now you must put in all the information needed to access that account. 

  • Sharing internet connection - HOW?

    I'm sharing internet connection with a PC via netgear. Now we want to add another ibook to the connection. How do I open the network so that it can share the connection? It keeps saying that the network password is incorrect, when it's not... Any ideas?
    Thanks!

    Are you using WEP?
    One of the problems with WEP is that the actual standard relies on a 10 character HEX key for 40bit WEP and a 26 character HEX key for 128bit WEP.
    In order to make things easier for people, vendors use certain algorithms to convert simple alphanumeric passwords (or passphrases) into HEX keys, thus enabling people to use simple memorable WEP password rather than lengthy HEX keys.
    The problem is that different vendors use different algorithms to generate the HEX key and therefore a ASCII password on an AEBS will be hashed differently on a Netgear client and vice versa.
    One thing is a 13 character 128 bit WEP password will be hashed by all vendors in the same way (if you use 40bit WEP then a 5 character password is required).
    Though sometimes not even that works and the HEX key must be used regardless.
    I have found this to be the case with all the Netgear routers I have used.
    AirPort: Joining an encrypted wireless network
    http://docs.info.apple.com/article.html?artnum=106424
    Choosing a password for networks that use Wired Equivalent Privacy (WEP)
    http://docs.info.apple.com/article.html?artnum=108058

  • How do I use Airport Extreme to limit internet time for my kids?  His computer is hardwired to the modem.

    How do I use Airport Extreme to limit internet time for my kids?  His computer is hardwired to the modem.

    You can set up daily time limits for each computer that connects using wireless, but it is not possible to do this when a computer is connecting directly using a wired Ethernet connection.
    Open Macintosh HD > Applications > Utilities > AirPort Utility on your Mac and click Manual Setup
    Click the Access Control tab below the icons
    Select Timed Access
    For more details on this, click the Help menu at the top of the screen and enter the following phrase into the search box:
    Controlling access to your wireless network
    A more sophisticated approach would be to use a service provided by OpenDNS. From your computer, this would allow you to monitor web sites visited, and block any unsuitable sites. More info is here:
    http://www.opendns.com/landings/familyshield

  • How do I transfer photos and videos from my iPhone 5 or Mac to an inactive iPhone 4S that my granddaughter uses ( it doesn't have Internet connection )

    How do I transfer photos and videos from my iPhone 5 or Mac to an inactive iPhone 4S that my granddaughter uses ( it doesn't have Internet connection )

    Two steps:
    you can first transfer photos from iPhone to computer and then drag them to the external hard drive. For your iTunes library, you can follow:
    1. Quit iTunes.
    2. Locate your external drive.
    Mac: On the desktop or Finder sidebar.
    3. Locate your iTunes folder:By default, the iTunes folder is located in:
    Mac: Finder > username > Music
    4. Drag the iTunes folder to your external drive. This can take a while if you have a lot of items.
    6. When the transfer is complete, your iTunes Library will have been successfully copied to your external drive.

  • How can I detect that there is an internet connection?

    How can I detect that there is an internet connection?
    Peter Goossens

    How can I detect that there is an internet connection?
    Peter Goossens
    Peter,
    You might want to experiment with this. It's not perfect, but...
    Class
    Imports System.IO
    Imports System.Net
    Namespace InternetConnection
    Public Class SiteInfo
    Private _displayName As String
    Private _connectionString As String
    Private Sub New(ByVal name As String, _
    ByVal connectionString As String)
    _displayName = name.Trim
    _connectionString = connectionString.Trim
    End Sub
    ''' <summary>
    ''' Gets the connection string of this instance.
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public ReadOnly Property ConnectionString() As String
    Get
    Return _connectionString
    End Get
    End Property
    ''' <summary>
    ''' Gets the display name of this instance.
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public ReadOnly Property DisplayName() As String
    Get
    Return _displayName
    End Get
    End Property
    ''' <summary>
    ''' A method which will add a new site to your collection of SiteInfo.
    ''' </summary>
    ''' <param name="siList">Your generic List(Of SiteInfo).</param>
    ''' <param name="displayName">The display name for this new instance
    ''' of SiteInfo.</param>
    ''' <param name="connectionString">The connection string for this
    ''' new instance of SiteInfo.</param>
    ''' <remarks></remarks>
    Public Shared Sub AddNew(ByRef siList As List(Of SiteInfo), _
    ByVal displayName As String, _
    ByVal connectionString As String)
    Try
    If siList Is Nothing Then
    Throw New NullReferenceException("The collection of SiteInfo cannot be null.")
    ElseIf String.IsNullOrEmpty(displayName) OrElse displayName.Trim = "" Then
    Throw New ArgumentException("The display name cannot be null or empty.")
    ElseIf String.IsNullOrEmpty(connectionString) OrElse connectionString.Trim = "" Then
    Throw New ArgumentException("The connection string cannot be null or empty.")
    Else
    If siList.Count > 0 Then
    Dim findDuplicate As IEnumerable(Of SiteInfo) = _
    From si As SiteInfo In siList _
    Where si.DisplayName.ToLower.Replace(" "c, "") = _
    displayName.ToLower.Replace(" "c, "") AndAlso _
    si.ConnectionString.ToLower.Replace(" "c, "") = _
    connectionString.ToLower.Replace(" "c, "")
    If findDuplicate.Count <> 0 Then
    Throw New ArgumentException("This is a duplicate entry.")
    Else
    siList.Add(New SiteInfo(displayName, connectionString))
    End If
    Else
    siList.Add(New SiteInfo(displayName, connectionString))
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    ''' <summary>
    ''' A method which will return a boolean value to indicate internet
    ''' connection status.
    ''' </summary>
    ''' <param name="siList">Your generic List(Of SiteInfo).</param>
    ''' <param name="displayName">The display name for the instance
    ''' of SiteInfo to use.</param>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public Shared Function InternetIsConnected(ByVal siList As List(Of SiteInfo), _
    ByVal displayName As String) As Boolean
    Dim retVal As Boolean = False
    Try
    If siList Is Nothing Then
    Throw New NullReferenceException("The collection of SiteInfo cannot be null.")
    ElseIf siList.Count = 0 Then
    Throw New ArgumentOutOfRangeException("Count", "The collection of SiteInfo cannot be empty.")
    ElseIf String.IsNullOrEmpty(displayName) OrElse displayName.Trim = "" Then
    Throw New ArgumentException("The display name cannot be null or empty.")
    Else
    Dim findInstance As IEnumerable(Of SiteInfo) = _
    From si As SiteInfo In siList _
    Where si.DisplayName.ToLower.Replace(" "c, "") = _
    displayName.ToLower.Replace(" "c, "")
    If findInstance.Count <> 1 Then
    Throw New ArgumentException("This instance is not in the collection of SiteInfo.")
    Else
    retVal = TestConnection(findInstance.First.ConnectionString)
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    Return retVal
    End Function
    Private Shared Function TestConnection(ByVal url As String) As Boolean
    Dim retVal As Boolean = False
    Try
    Dim request As WebRequest = WebRequest.Create(url)
    Using response As HttpWebResponse = DirectCast(request.GetResponse, HttpWebResponse)
    Using dataStream As Stream = response.GetResponseStream
    Using reader As New StreamReader(dataStream)
    Dim responseFromServer As String = reader.ReadToEnd()
    retVal = True
    End Using
    End Using
    End Using
    Catch ex As WebException
    retVal = True
    Catch ex As Exception
    retVal = False
    End Try
    Return retVal
    End Function
    End Class
    End Namespace
    Example Usage
    Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    Dim siList As New List(Of InternetConnection.SiteInfo)
    InternetConnection.SiteInfo.AddNew(siList, _
    "Test1", _
    "http://dev.virtualearth.net/REST/v1/Locations/37221?o=xml")
    InternetConnection.SiteInfo.AddNew(siList, _
    "Test2", _
    "nothing here")
    InternetConnection.SiteInfo.AddNew(siList, "Test3", _
    "www.google.com")
    InternetConnection.SiteInfo.AddNew(siList, "Test4", _
    "http://fls-online.com")
    ' This will return true:
    Dim bool1 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test1")
    ' This will return false:
    Dim bool2 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test2")
    ' This will return false:
    Dim bool3 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test3")
    ' This will return true:
    Dim bool4 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test4")
    Stop
    End Sub
    End Class
    Let me know your results please?
    Still lost in code, just at a little higher level.

  • Connecting to shared internet connection through Mac osx 10.7 wifi

    I can't get my new HP touch pad to connect to my wireless network. I connect my iMac through ethernet but have a wifi network setup from my iMac so my other devices can use my iMacs shared internet connection. The touchpad will not connect, it finds the network, I put in the WEP key and it states "unable to connect, try again". I am at the setup stage on the touch pad and can't get any further!!. I have tried everything I can think of including creating a new wireless network, disabling and changing the sharing password and re-enabling. all my other devices still log on fine and can connect to the internet through the iMacs connection. anyone got any ideas? 
    Post relates to: HP TouchPad (WiFi)

    alopix wrote:
    I just remembered why I ignored your first post when reading this topic:
    Ad-hoc-sharing can't be the problem, because when I use the exact same method without any WEP encryption, so create an open network, it works perfectly - so it has to be an error in the webOS' handling of WEP or similar...
     I'm curious that the Mac offers only ASCII (key length of 5 characters) or 128 bit encryption, but not 64bit (which has a key length of 10 hexadecimal characters and works perfectly with my touchpad).  <Wiki definition of WEP.>
    This sounds like an old problem we used to have when Palm came out with WiFi-enabled devices. Users would create an ASCII text password in their router, and it would generate a 10 character hexadecimal string that was the true password.  Entering the 5-digit ASCII code would fail since it was a seed, and not the "real" code.. Entering the 10-digit key worked every time.
    By any chance is this what is occurring on the Mac? Do you see a 10 digit code generated anywhere in the setup routine?
    Was the link I provided to you of any help?
    WyreNut 
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • When using safari I will lose internet connection, however whenever I'm using firefox this never happens.  Does anyone know what is going on here?

    When using Safari I will lose internet connection, however when I am using firefox this never happens.  It is very annoying, does anyone else have this problem and more importantly know how to fix it?

    Thank you for the reply.  I did what you said, and it worked for awhile and then it started doing the same thing again.  I know it's not my internet connection or router, because like I said, Firefox never has any problems.  I dislike the new Firefox, so I went back to Safari, but if this keeps up I guess I'll have to go with Firefox.
    You are not connected to the Internet.
    Safari can’t open the page “http://www.yahoo.com/” because your computer isn’t connected to the Internet.

  • Can I use I-Phone 4 for internet connection?

    can I use I-Phone 4 for internet connection to I Pad ?

    If your cell carrier supports tethering and the WiFi "hot spot" feature, as AT&T does, yes.
    Regards.

  • How do I use Mail (same setup) on two computers?

    I have a MacMini and a MacBook; both are running MtnLion 10.8.5.  The mini is my main computer. I used to have Snow Leopard on both.  When I traveled, I would copy my Mail folder and mail plist file to my Macbook and I was able to check/use Mail with my Macbook away from home.  When I was back and ready to use my mini, I would reverse the copy and viola I was ready to go.  (I easily connect the two wirelessly and easily copy files to and from. I don't have any issues with that part.)
    (I am thinking the first thing most people think is, no worries because of imap and icloud and other clouds, etc.  I use POP and I don't use iclouds, imaps, or other clouds.  Even if I did, there would still be the fact that I save emails in folders on my computer.  I have tried imap, and I personally do not care for it.  I like and use pop.)
    Now, with both having MtnLion, it seems more complicated.  I think of have found most of the files, even the ones located in different places.  There are more places now and more to remember and copy.  I think I got the macbook ready to go, but was thinking perhaps there is an easier way.
    Does anyone know a less complicated way to do what I am needing??
    I just want a way to copy all settings and mail to and from my MacMini and my MacBook.
    If there is not another way to do this, does someone have a complete checklist of what files and folders should be copied??  That would also be helpful.
    Thank you.

    thank you dianeoforegon for your post.
    My library folder was not hidden. I know how to find the files and folders, only want to make sure I get them all.  I upgraded to MtnLion months ago, just have not used my macbook for mail.  Last time was when they both had SnowLeopard.  Where the OS keeps all the files is different and there are more files/folders for Mail.  Some are in ~/library/mail  but some are in ~/library/containers/.…  too.  This is a new spot.  It took me a while to locate some of the spots.  It used to be just copy "Mail" "Mail Downloads" and the plist file.  It's not quite like that now.  I even found some in /Library/...  (this is not the user "library" folder, but the computer Library folder).
    Anyway, I just wanted some other way of "Copying" my Mail and Settings.  Not "transferring" my mail (like to a new system).  I want to copy it all and then use it.  Then copy it back with any changes and use it from there.
    Sorry if I am not explaining it very well.  I don't know what to call it!!

  • Cloud storage - how can I use my .png file shared in "public mode" like a hosted file ?

    Hi every body,
    I am french and new on the forum so please be indulgent ! (for my english and my questions).
    I am working on HTML signature for my company and I have a little problem.
    to be viewed, my .png files needs to be on a server. So I remember that adobe gave me a 100giga storage for me to use.
    Cool !
    But the problem is that the link only send me to a special view of my file... a jpeg one. So when I try to copy the url I can only use the .jpg
    I want my file !
    So my question is : is it possible that the cloud storage isn't supposed to share any thing else than a miniature of my file and a download button ?
    How can I use it for my signature if I can't acess it but only download it?
    Thank you very much for your time
    Morgan

    Hi Morgan,
    You are correct.  Public link sharing works as follows:
    -  you can share a public URL to your PNG file on Creative Cloud.  The recipient of the URL can view a preview of the file and download the file in the original PNG format or JPG format.
    -  it is not possible to give other users direct access to the original file in Creative Cloud.
    For more info on sharing and collaboration options:
    https://helpx.adobe.com/creative-cloud/help/collaboration.html
    https://helpx.adobe.com/creative-cloud/help/share.html
    Thanks,
    Elba

  • How can I use mail merge with numbers in the new pages version?

    I am trying to use mail merge with the new version of pages and can not seem to be able to figure it out. PLEASE HELP!!!

    Nope. Version 5 is a fashion accessory: it looks like software, but it doesn;t actually do anything. Sort of like a sports car with a lawn-mower engine. Looks snzzy. Doesn't really work. (And given how buggy it is, I should further specifiy that the lawn-mower engine comes with a blade: it chews up your old templates, produces files that cannot be sent as email attahcments [yes, really], and—this just in—doesn;t play well with the new SMB facility of Mavericks. In short, as one reviewer put it, "un unmitigated disaster."

  • How can i use Mail on 2 macs with the same mail address?

    Hi,
    I have two Macs, connected through WLAN. From each Mac I can use Mail (sending and receiving) with the same mail address. This worked well; on each Mac I have separate files storing the mails (input, sent, trash, …).
    Some days ago I had to change the provider. (Perhaps this may be the reason for my problem?) Now both mail systems are connected - in the way that if I put on Mac *1 a mail into the trash it is automatically thrown into the trash on Mac *2.
    What is to be done to separate the two systems (i. e. make them independent of each other)?
    Hans

    It looks like you are using a IMAP mail account, a protocol used by most email providers nowadays. Read -> http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol
    The main feature of IMAP is the sync of all the changes you do on your mail account. If you want to keep your mails on one Mac, have a look at this site -> http://kb.mit.edu/confluence/pages/viewpage.action?pageId=3908294

  • How to use n82's wlan, as internet connection for ...

    Hi everyone!
    I have a pc without wlan connection and a n82. I have a wireless access point in my room. I want to use the internet connection on my pc, with n82's wlan. How can I use my n82's wlan for sharing the internet connection thought usb cable? Is it possible at all?
    Thanks for reply!
    VBalu987

    although the phone can be used as a modem it can't be used as WLAN switch or adapter, so it's not possible to do so, im afraid.
    you need to get Wireless lan adapter for you laptop.
    Fear not those who argue but those who dodge

  • How can I use any website on the internet with my apple tv?

    How Can I use internet or the web on my apple tv?

    Welcome to the Apple Community.
    You can't unless you mirror it from your iPhone or iPad.

Maybe you are looking for

  • Iphones and ipods need to work together.

    I'm having some very bad issues with my ipod touch. Last night I needed to charge my iphone, so I plugged it into my laptop for a little while. I normally don't do that, but my regular charger was not available to me. I never told it to sync with my

  • Get rid of the mouse cursor when on desktop touch devices

    Hi there, I'm using sap.ui.commons controls to build my application. However, this application will sometimes be used on touch devices like large touch screen HDTV connected to a desktop Windows PC. When clicking on a button, the button gets focussed

  • Data-source.xml location

    Hi. I have a web application, so I included the file data-source.xml and orion-application.xml in the project. If I run the application through JDeveloper every thing is ok. But if I make a deploy in the server, I get the following error: javax.namin

  • Java SP Stack compatability across multiple component systems

    I was wondering if there was a 'best practice' or 'guide' or 'other information' on how to insure the compatibility of Java stacks running varying components that either interact with each other and with backend SAP systems. What we have are multiple

  • Why doesn't my Photoshop standard CS6 have the same brush pop up as CC?

    I've noticed that in PS CS6 CC that the right-click brush menu pop up has a brush angle wheel like in the brush palette. I do NOT see this when I'm using my version of Photoshop. What gives, Adobe? I'm an illustrator and have no need for most of the