Accessing dot mac email using the terminal

Is it possible to access one's dot mac email account using the terminal?
Thanks-
db
Powerbook G4   Mac OS X (10.4.7)  

Hm, Windows has this dang tendency to make simple things hard :-/
First note that Putty won't help you much, because it allows you to log into remote SSH servers, but I don't think it gives you a "local shell", i.e. replace or extend the normal DOS shell (or whatever it's called nowadays) that comes with Windows.
That said, I don't know whether you can find Windows ports of some Unix tool that would help you somewhere in the "vicinity" of Cygwin http://www.cygwin.com/ or so ... I don't use Windows enough to know that
My personal solution to a similar problem is to rent a Linux root server, together with a few friends, which gives us all a platform to perform anything in the internet as long as we have an SSH capable computer where we are.
If you have an ADSL flatrate you could even leave a computer at home on and SSH into that...

Similar Messages

  • Can't use Find My Friends on iPhone due to Apple ID not being verified. Can't do this as I can't access my .mac email any longer and I can not change the primary e-mail address for my Apple ID!

    Can't use Find My Friends on iPhone due to Apple ID not being verified.
    Can't do this as I can't access my .mac email any longer and I can not change the primary e-mail address for my Apple ID!
    So my options are:
    Create a new Apple ID, use that and lose all the apps I've purhcased with it (a fairly substantial amount)
    Somehow Migrate these purchases over to a new Apple ID
    Apple let me change the primary ID for the account
    Anyone else ran into this before?
    I've tried accessing the mail through a mail application using the correct server information, and trying both the old 6 character password and the one I had to change it too after they updated the security guidelines - neither work.
    Help would be greatly appreciated as I can see more services down the line not working without the address being verified!

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iDevice, then sign back in with the ID you wish to use.  When you do this you may find that the password for your old ID isn't accepted.  If this should happen, and if your old ID is an earlier version of your current ID, you need to temporarily recreate your old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You should not need to verify the old email address.  You can now use your current password to turn off Find My iDevice on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I have 3 macs. 2 are Lion, 1 I left Snow leopard so I can access data from my old Quicken Application that doesn't work with Lion. If I move to iCloud, will I no longer be able to access my MobileMe email on the Snow Leopard mac?

    I have 3 macs. 2 are Lion, but 1 I left Snow leopard so I can access data from my old Quicken Application that doesn't work with Lion. If I move to iCloud, will I no longer be able to access my MobileMe email on the Snow Leopard mac?

    What version of word do you have? The TS3938 sounds like it's a PowerPC app- written for an old architecture that is no longer supported in Lion. If this is the case, your files are fine- you just need a newer version of word that will run in Lion in order to open them. The newest version (2011) should be readily available anywhere, and has worked fine for me ever since I switched to Lion on release day....

  • HT4597 I can no longer access my mac mail in the Mail program - only on icloud. I would like to have both my aol account and mac account in one place like it was. Anything I can do?

    I can no longer access my mac mail in the Mail program - only on icloud. I would like to have both my aol account and mac account in one place like it was. Anything I can do?

    iCloud's mail server settings are different from MobileMe's. Strictly speaking Lion 10.7.2 is required for iCloud, and on that Mail is set up automatically.
    Snow Leopard cannot access most of iCloud's facilities, however you can set Mail up manually to access your email. The method is described here:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudmail.html
    The situation with iCloud and Snow Leopard is described in detail here:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudSL.html
    iCloud cannot access your AOL account (the MobileMe facility for checking external POP accounts does not exist in iCloud) - you will have to do this in the Mail application in the usual way. You could of course set up forwarding from your AOL account to iCloud (assuming they provide this facility) but you will not be able to reply using iCloud's SMTP server with anything other than the iCloud address as the 'From' address.

  • Help using the terminal.

    I'm taking a survey course of languages and we are covering perl this week. I need to write perl script that will parse xml data, but I can't even figure out how to use the terminal.
    when I open the terminal I get this line(I subed out my name and username):
    firstName-LastName-MacBook-Pro:~ username$
    i have tried command from tutorials such as ls and that works, but I can't figure out how to run scripts from a file. I have tried a simple hello world app by typing:
    #!/usr/local/bin/perl
    print "Hello World!\n";
    in text edit saving it as hello.pl then I tried to type hello.pl in the terminal and it says
    -bash: first.pl: command not found
    can someone explain in simple terms how to run simple programs like this?
    thanks, aaron

    Thanks for the help. That was a lot of good information. I did have it saved wrong(as rich text).
    It is a common mistake, and I'm glad you avoided it.
    However I still could not figure out how to run first.pl. using ./first.pl and ~/first.pl
    The "chmod +x first.pl" step is need to mark the file as an executable. As previously suggested by etresoft and me, you can also just use "perl first.pl" and avoid the other configuration stuff.
    I downloaded fraise as you recommended. Can you guide me through the part were you said, "modify your PATH environment varialble so it includes a directory where you put your personal scripts." i did not understand what you meant by "Create the file .bash_profile in your home directory (you will need ls -a to see the file after you create it). In .bash_profile".
    Any file that begins with a period will be invisible to the Finder. And the 'ls' command will by default not show files that begin with a dot. "ls -a" will so all files in a directory, including those that begin with a dot. This was the Unix way of cutting down on clutter in a directory, by having 2 classes of file name, and the ones with a leading dot were then typically used for things like initialization files.
    In this case .bash_profile is a bash shell initialization file. By default Mac OS X Terminal sessions use the bash shell to service the commands you enter at the command prompt.
    However, a new Mac OS X account typically does NOT have a .bash_profile, so if you wish to customize various bash behaviors you would need to create the .bash_profile yourself.
    And as much as I happen to love the vim (and before that vi) text editors, they have a very steep learning curve, so I'm hoping that etresoft was being humorous when he suggested you should avoid a GUI text editor such as Fraise
    And besides, if you start down the vi/Vim path, it will only lead to text editor wars with the emacs uses of the world Since you are trying to get through a programming language survey course, perhaps you can skip the text editor debates until a later semester.
    With respect to PATH. PATH is a standard Unix environment variable that contains a list of directories that the shell (bash) will search when trying to find the executable file with the same name as the command you entered at the shell command prompt.
    If you do not modify your PATH environment variable, it generally looks like:
    echo $PATH
    /bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
    where each directory is separated by a colon (:). The shell will take the command name you entered, and search each directory from left to right until it find an executable file that matches your command.
    What I was suggesting is that you create your own personal directory where you put executable programs and scripts, and then add that personal directory to your PATH environment variable.
    Since the bash shell is going to read .bash_profile when you start a new Terminal session and execute the commands it finds in .bash_profile, that is the idea place to customize your PATH
    # Assuming you have created a folder called 'bin'
    # in your home directory, and you put your personally
    # created executable programs and scripts in there
    # then the following export command would modify your
    # PATH to include your personal bin directory. It does
    # not need to be called bin, that is just a long standing
    # Unix convention.
    export PATH="$PATH:$HOME/bin"
    After changing the .bash_profile, you would need to either restart your Terminal session or issue the command
    source ~/.bash_profile
    I'm a complete beginner when it comes to this stuff.
    your help is greatly appreciated.
    We all had to start somewhere. In my case the Unix command line prompt was a step up in usability
    ps. how to I enclose my code quotes like you did?
    Code segments (or anything you do not want the forum software to touch) are enclosed in an identical pair of tags. For example:
    ... your code snippit here ...
    And one final point. etresoft pointed out that the she-bang (#!) line was wrong. I find the following to be the most portable way to specify the #! line
    #!/usr/bin/env perl
    print "Hello World!
    /usr/bin/env is a POSIX standard program that must list in /usr/bin/env, and it will invoke the script interpreter specified as its single argument. /usr/bin/env will use PATH to find the script interpreter, so as long as perl exists in one of the directories specified by PATH, my above #! will always find it, no matter what Unix platform I copy my perl script to, or hand it in for a homework assignment (OK, it is been a lot of years since I did homework, but you might find it useful for your survey course).
    etresoft also suggested included the -w option in your #! line. That is not possible when using "#!/usr/bin/env perl", however, you can can just add the "use warnings;" statement to the your perl script and get the same effect:
    #!/usr/bin/env perl
    use warnings;
    print "Hello World!
    And if you want perl to look even close at your code you can change warnings to strict
    #!/usr/bin/env perl
    use strict;
    print "Hello World!
    {code}
    which makes perl really picky about your code.

  • Setting $PATH using the terminal

    Hi All! I am a newbie with OS X and I am wondering as to how to add a directory into the PATH using the terminal. Thank you very much!

    Ustilago wrote:
    Hi All! I am a newbie with OS X and I am wondering as to how to add a directory into the PATH using the terminal. Thank you very much!
    Welcome to Apple Discussions!!
    export PATH=/path/to/your/directory:$PATH
    Note that you should supply the complete path to the directory you want to add.
    To make this automatic for each time you start the Terminal, you need to arrange for it to appear in ~/.bash_profile or ~/.bashrc. It's best to put it in the latter, since this is run for every Terminal window. ~/.bash_profile is only executed for the initial login window, but you can avoid duplication by having it source ~/.bashrc. Stripped to its essentials, my ~/.bash_profile is just
    if [ -r ~/.bashrc ]; then
    . ~/.bashrc
    fi
    If you have further questions, you might find posting them in the UNIX forum better. One of the regular posters there, Bill Scott, has this page which you may find useful: Unix Links, especially under the Mac OS X heading.

  • TS3899 I can't access my yahoo emails in the email in the iPhone 5c it was working perfectly fine earlier an now it quit

    I can't access my yahoo emails in the email in the iPhone 5c it was working perfectly fine earlier an now it quit

    I have a similar problem. I was receiving email on my iPhone for months, and then it quit working. When it quit working, I continued to receive emails on my iPad even though the server and port settings were exactly the same between the two devices. I tried deleting and re-adding my email account on the iPhone and restarting my iPhone, but I still couldn't receive email on the device. The only way I could get email to work on my iPhone was to switch to using a POP3 email server (this is the server that my phone auto detected when I re-added my email account) -- the server that was working previously and that is still working on my iPad is an IMAP email server. Since the IMAP server settings continue to work on my iPad, it seems that the problem is with my iPhone and not my email server.
    iPhone 5s Version 8.1.3 (12B466)
    iPad 2 Version 8.1.3 (12B466)

  • Using the terminal????

    I am new to the hole MAC world and know very little about using its terminal. How do I write a command using the terminal to find a file? Also are there any good tutorials out there that I can study from? Thanks.

    Additionally, check the AppleScript and Unix forums under OS X Technologies. Note, that the default shell for OS X is bash. Check Terminal's help if you want to use another.
    Since you're new to Macs, these should help:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    MacFixIt Tutorials, and
    MacTips Learning Centre.
    Additionally, *Texas Mac Man* recommends:
    Quick Assist.
    Welcome to the Switch To A Mac Guides, and
    A guide for switching to a Mac.

  • I used to be able to send document as a PDF or Word Document via email using the toolbar.

    I used to be able to send Pages documents as a PDF or Word Document via email using the Pages toolbar (not the iWork feature).  Lately, it hasn't been working at all.  No email pops up; just nothing.  Is anyone else having this problem?  Any solutions?  I'm running Pages '09 version 4.1.

    This Apple Express Helper is a dumb one.
    File names with # and $ are perfectly treated by the share to Mail feature.
    What is rejected is the slash (/) and it's perfectly normal.
    Since the delivery of the first version of OS X, slash is an illegal character in file names.
    Apple thought that it would be fair to build a piece of code taking care of such chars because they were valid ones in the older operating systems.
    But they expected that users will drop these chars. Alas they didn't and users like you are continuing to play with matches.
    At last, OS X 10.7 removed the extraneous code and now, hosanna, iWork refuse to export files whose name contain the infamous slash.
    Yvan KOENIG (VALLAURIS, France) lundi 9 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Any unix commands to view network status & activity using the terminal?

    I don't use the terminal much and was wondering if there are any unix network commands that let you view packet contents, connection status and other network information. I'm not interested in making any changes, I just want to use the terminal to get network and related information.
    Thanks in advance to anybody who answers.
    - Mark
    G4/450MHz Sawtooth   Mac OS X (10.4.7)  

    Hi Mark,
       There are tons of commands; it would help to know what you want to know. You can monitor the status of all ports with:
    sudo lsof +Mi
    That will display all network connections and all listening daemons. A command that is similar to that is:
    netstat -a -f inet
    Of course netstat specializes in network information and there are lots of different stats it will display.
       If you run a firewall, it keeps stats on rule matches. You can see them with:
    sudo ipfw -atdN list
       As has already been mentioned, Mac OS X comes with tcpdump but there's only one great packet sniffer: Ethereal. It doesn't come with OS X but if you have X11, it can be installed with a packet manager like Fink.
       Finally, many running services keep their own stats or logs. You would have to read up on the ones you're running to see what information they provide.
    Gary
    ~~~~
       A diplomat is man who always remembers a woman's
       birthday but never her age.
             -- Robert Frost

  • Sending an email using the gmail client on the iPhone

    Hello,
    When I send an email using the gmail client on the iPhone, the message I send then shows up in my 'in box' and not my 'sent' box. Mail app on my computer behaves in the same manner. Is there a fix for this?
    Thanks for your help.

    Hi, its because gmail treats each message as a "conversation" rather than emails sent or recieved. so your sent email will say "from me" all in the same inbox. check this on the web based gmail...

  • How to sync 2 different Mac users using the same Apple ID and with out mixing each other info?

    How to sync 2 different Mac users using the same Apple ID and with out mixing each other info?
    We are two people using three difrent Macs, 1 Iphone and 1 Ipad with separate USERS  on each Mac but sharing the same Apple ID: xxxxxx
    I set up the first user to iCloud and it was OK but when I set up the second user to use iCoud the first users's info gets mixed with the second user's info?
    Do we have to set up a diffrent Apple ID for each other?
    Sometime ago I added my friends E mail (yyyyy) to the main Apple ID (xxxx) as for using his E mail account (to separate our e mail accounts, and it's working ok) but now when I try to create a new apple ID whith the same friend's e mail (yyyyyy)  it says that his mail (yyyyy) is already an apple ID when the Apple ID is really my E mail (xxxxx)... any clue?
    Thanks

    I believe because you migrated from a Nokia to an iPhone you need to register the Bn phone number with your Apple ID so it can be used for iMessage. The Pn number seems to be the only one registered
    Go here > https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Manage your Apple ID and see if that does the trick
    Hope that helps

  • HT201250 how can i pass information from one mac to another mac by using the time capsule

    how can i pass information from one mac to another mac by using the time capsule

    If you want to transfer files, settings, etc., you must open Migration Assistant (Applications > Utilities) in the Mac that you want to transfer the files and follow the instructions

  • Transfer palm data from PC to Mac without using the M100 - only exporting the data and importing?

    I had an old Palm M100 that I haven't used in a while but I love the palm desktop app - my PC currently runs 4.1.4
    I have a mac powerbook and I loaded 4.2.1
    When I export my calendar and address book data in the .aba and  .dba format from my PC - the Mac palm desktop app doesn't seem to recognize those file formats.
    Are those not standard formats between the two platforms?  It also looks like the Mac desktop app doesn't even recognize importing data from another Palm format?  It just shows the other program formats.
    Also, when importing as CSV or tab-delimeted those are extremely messed up also.
    Any "easy" way to get the data off of my PC and onto my Mac without using the Palm M100 itself?
    Thanks,
    Dave 
    Post relates to: Palm m100

    The suggestion is not accurate, at least with respect to calendar information. I'm in nearly the same situation, and just tried it. (Saving .dba file out of Windows Palm Desktop 4.1.0, importing into Mac Palm Desktop 4.2.1revD.)
    First, the Mac program will not recognize the .dba as an importable format if one selects All Readable Documents.
    Second, if one selects All Documents instead, you get the following error message:
    The file could not be imported.
    In order to import data from Windows Palm Desktop software, export the file in one of these formats: comma (.csv) or tab (.tab) delimited, vCard, or vCal.
    The problem with this is that Windows Palm Desktop 4.1.0 offers only two options for exporting Date Book information:
    1) the whole datebook as a .dba file.
    2) individual calendar items as a vCal.
    So far as I can see, there's no way to Select All so as to export all as a vCal, and no pre-set option to do so.
    Post relates to: Palm m125
    Post relates to: Palm m125

  • How do i access my mac email account from another computer?

    How do I access my mac email account from another computer?

    Go to http://www.icloud.com/ and sign-in

Maybe you are looking for