Page 9 of 50 FirstFirst ... 789101119 ... LastLast
Results 81 to 90 of 498

Thread: HOWTO: Send and Receive Hotmail through Evolution

  1. #81
    Join Date
    Feb 2007
    Location
    Racine, Wisconsin
    Beans
    35
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Send and Receive Hotmail through Evolution

    UPDATE and a FIX:

    For those of you who have issues SENDING using this method, the following is for you.

    I am running 7.04 on my Tosh laptop, and had the exact same error with sending : "Operation In Progress" in Evolution using hotwayd and hotsmtpd.

    I felt the issue was in hosts.allow and I was right. Please add the following line to /etc/hosts.allow :

    Code:
    hotsmtpd: 127.0.0.1 2500
    This was the end-all-be all of my issues, and now sending works fine. I hope it helps with anyone else who is having the issue.

    Also, to mention, I have configured xinetd with option "--inetd_compat" as suggested in a post somewhere in this thread. After editing hosts.allow, I did the following:
    Code:
    sudo /etc/init.d/inetutils-inetd restart
    sudo /etc/init.d/xinetd restart
    Last edited by Freaky_Llama; May 23rd, 2007 at 10:07 AM.

  2. #82
    Join Date
    Feb 2007
    Beans
    1

    Talking Re: HOWTO: Send and Receive Hotmail through Evolution

    You're a genius man, i have been trying this for ages, and it works perfect with my ubuntu as im a geek too , but man ure amazing.

    Thanks,

    Cheers,

    M

  3. #83
    Join Date
    Aug 2006
    Beans
    3

    Re: HOWTO: Send and Receive Hotmail through Evolution

    Great how to!!!
    It worked for me from the first time.
    No worries,
    Good Job.
    Thank you very much!

  4. #84
    Join Date
    Mar 2007
    Beans
    31

    Re: HOWTO: Send and Receive Hotmail through Evolution

    I figured out that I was running xinetd and the package was installed as a dependency of vmware. I tried adding the -inetd_compat parameter to the xinetd file and was only able to receive mail. Editing the hosts.allow didn't help either. I figured out the configuration for xinetd without use of the -inetd_compat parameter. It goes as follows:

    sudo gedit /etc/xinetd.conf and copy and paste this:
    Code:
    defaults
    {
            instances               = 60
            log_type                = SYSLOG authpriv
            log_on_success          = HOST PID
            log_on_failure          = HOST
            cps                     = 25 30
    }
    includedir /etc/xinetd.d
    Next sudo gedit and create these two files:
    /etc/xinetd.d/hotsmtpd
    Code:
    service hotsmtpd
    {
    disable = no
    type = unlisted
    socket_type = stream
    protocol = tcp
    wait = no
    user = nobody
    groups = yes
    server = /usr/bin/hotsmtpd
    port = 2500
    }
    /etc/xinetd.d/hotwayd
    Code:
    service hotwayd
    {
    disable = no
    type = unlisted
    socket_type = stream
    protocol = tcp
    wait = no
    user = nobody
    groups = yes
    server = /usr/bin/hotwayd
    log_on_failure += USERID
    log_on_success += PID HOST EXIT
    port = 110
    }
    Restart the xinetd server
    Code:
    sudo /etc/init.d/xinetd restart
    I'm sure there is a more streamlined way of configuring these files and the log files that are being created are probably unnecessary. I'm not sure if editing of hosts.allow is required if you use this method, my file is blank. I also don't know how secure this method is. Anyone have any additional input?

  5. #85
    Join Date
    May 2007
    Beans
    28

    Exclamation Re: HOWTO: Send and Receive Hotmail through Evolution

    Quote Originally Posted by unique View Post
    Or better yet just use...
    Code:
    pop3hot.com
    as your pop3 server and your set.
    JUST SAY NO

    Aw please... That is one blunt way to invite people into massively dumping their hotmail passwords onto some guy's nifty 'free server'

    I would *not* advise anyone to do this as long as it is trivial to set up hotway locally. I know, passwords will probably still get sent in cleartext, but purposely sending them through a specific server that *knows* what to listen for is just a little bit naive in my book .

    Trouble is, people don't know how much privacy-sensitive information can be gained from their lowly hotmail boxes... Please do not advise unsuspecting computer users of bad ideas like this. Thank you thank you thank you

  6. #86
    Join Date
    May 2007
    Beans
    4

    Re: HOWTO: Send and Receive Hotmail through Evolution

    I've already got courier-pop installed on my server. Is there anyway to configure hotway to listen on alternative port? Also, configure hotway to download the mail to one of my mailbox in courier?

    Thanks!

    chrno

  7. #87
    Join Date
    Mar 2007
    Beans
    31

    Re: HOWTO: Send and Receive Hotmail through Evolution

    Quote Originally Posted by chrno2004 View Post
    I've already got courier-pop installed on my server. Is there anyway to configure hotway to listen on alternative port? Also, configure hotway to download the mail to one of my mailbox in courier?

    Thanks!

    chrno
    Just to promote my last post, if you use xinetd instead of inetd (xinetd is the update to inetd), then follow the instructions in my last post and just change the port numbers as so:

    Code:
    service hotwayd
    {
    disable = no
    type = unlisted
    socket_type = stream
    protocol = tcp
    wait = no
    user = nobody
    groups = yes
    server = /usr/bin/hotwayd
    port = 1100
    }
    If you're using the inetd method just change this line in inetd.conf:
    Code:
    pop3		stream	tcp	nowait	nobody	/usr/sbin/tcpd /usr/bin/hotwayd -r
    to something like

    Code:
    1100		stream	tcp	nowait	nobody	/usr/sbin/tcpd /usr/bin/hotwayd -r

  8. #88
    Join Date
    May 2007
    Location
    Sydney, Oztraya
    Beans
    48
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: HOWTO: Send and Receive Hotmail through Evolution

    I've set up evolution with my hotmail account according to the following instructions:
    http://onlyubuntu.blogspot.com/2007/...-messages.html

    I have 2 major problems, which are related:
    - after evolution downloads my mail, it is automatically put in my hotmail trash when i check it out via webmail
    - how do i sync the two together so that if i make a folder or move emails between folders in evolution or web-based hotmail, the other one recognises it and automatically does the same?

    I consider this to be a massive problem with evolution. outlook does it perfectly.

  9. #89
    Join Date
    Mar 2007
    Beans
    31

    Re: HOWTO: Send and Receive Hotmail through Evolution

    Quote Originally Posted by utopial View Post
    I've set up evolution with my hotmail account according to the following instructions:
    http://onlyubuntu.blogspot.com/2007/...-messages.html

    I have 2 major problems, which are related:
    - after evolution downloads my mail, it is automatically put in my hotmail trash when i check it out via webmail
    - how do i sync the two together so that if i make a folder or move emails between folders in evolution or web-based hotmail, the other one recognises it and automatically does the same?

    I consider this to be a massive problem with evolution. outlook does it perfectly.
    I'm not sure about syncing, but the hotmail trash problem should be an easy fix.
    If you have a line that looks like
    Code:
    pop3		stream	tcp	nowait	nobody	/usr/sbin/tcpd /usr/bin/hotwayd -r
    in your inetd.conf file, remove the -r option.
    In the account preferences in evolution, go to the Receiving Options tab and make sure "Leave Messages on Server" is checked.

  10. #90
    Join Date
    Apr 2007
    Beans
    59

    Re: HOWTO: Send and Receive Hotmail through Evolution

    Thanks so much, this worked perfectly for me the first time also!

    But, to echo some previous posts, if anyone does know or figures out how to make it so when you delete downloaded hotmail emails in evolution, they also get deleted from your online hotmail account, please clue me in.

    Thanks again!

Page 9 of 50 FirstFirst ... 789101119 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •