Convert to tags from "*" to "tags/*".
[blog.git] / posts / Comcast_rediculousness.mdwn
1 [[!meta  title="Comcast rediculousness"]]
2 [[!meta  date="2008-09-02 16:19:43"]]
3 I recently paid a phone bill online for Comcast, and in order to do so
4 I needed to set up a comcast email account.  While browsing through
5 their documentation trying to locate an imap server, I ran across [this
6 priceless gem](http://www.comcast.com/customers/faq/FaqDetails.ashx?Id=4394):
7
8     Error #1 - Port 25. Secure (SSL); no Socket Error: 10053.  Error Number 0x800CC0F.
9
10     This error indicates that your port 25 has been blocked.  Comcast has
11     determined that your computer has been infected with a virus and has
12     been used to send out spam, liekly without your knowledge.  By closing
13     this port, we've taken steps to protect your computer from being used
14     to send spam.
15
16     How can I send email again?
17
18     If you would like to send emai lthrough Outlook Express, you can click
19     here to access a simple to use, one-click fix, which will upgrade
20     Outlook Express to send email through alternate port 587.
21
22 Your computer has a virus spewing junk to port 25?  No problem, simply
23 move your activities somewhere else :p.  You would have though maybe
24 links to anti-virus software, since I suppose linking
25 [here](https://help.ubuntu.com/6.10/ubuntu/installation-guide/i386/index.html)
26 is probably to complicated for Comcast to handle ;).
27
28 Sadly Comcast doesn't support IMAPS:
29
30     William_(Tue Sep 02 2008 11:03:01 GMT-0400 (EDT))>
31     I was wondering if there is an IMAPS server
32
33     Romeo.25655(Tue Sep 02 2008 11:03:39 GMT-0400 (EDT))>
34     William, Comcast supports POP server only.
35
36     William_(Tue Sep 02 2008 11:03:54 GMT-0400 (EDT))>
37     are there IMAP plans for the future?
38
39     Romeo.25655(Tue Sep 02 2008 11:04:33 GMT-0400 (EDT))>
40     I am not certain about that, William.
41
42     William_(Tue Sep 02 2008 11:04:52 GMT-0400 (EDT))>
43     Is there someone else I should ask?
44
45     Romeo.25655(Tue Sep 02 2008 11:06:25 GMT-0400 (EDT))>
46     At this time, the only server that we sure for our email is POP. There
47     is no plans to use IMAP.
48
49 After some googling about, I found out how to setup mutt to not delete
50 messages it downloads from a POP server, and got Comcast working
51 through Mutt.  I was uncertain about the encryption, since Mutt fails
52 on its first few authentication attempts, so I tcpdumped the connection with
53
54     # tcpdump -A > /tmp/dump
55
56 and grepped through the output for my username and password.  No
57 matches, so apparently `pops` in the server name is sufficient for
58 hiding the authentication.
59
60 You can see my mutt configuration at the [Drexel liki](http://www.physics.drexel.edu/liki/index.php/Mutt).
61
62 [[!tag tags/linux]]