Closed Bug 552628 Opened 14 years ago Closed 14 years ago

[Autoconfiguration] Add support for email.it mail account

Categories

(Webtools :: ISPDB Server, defect)

x86
Windows 7
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: Aureliano, Assigned: Aureliano)

References

()

Details

(Whiteboard: [top-missing-domain])

Attachments

(1 file, 9 obsolete files)

Assignee: nobody → ulysse
Whiteboard: http://www.email.it/ita/config/thunder.php → [top-missing-domain]
Attached patch email.it pop3 *.xml (obsolete) — Splinter Review
Attachment #432758 - Flags: review?(bwinton)
Probably I make a little error: 

1. where is the right value of "Incoming authentication" when on account settings, server settings option "security settings-->use secure authentication" is unchecked between

<element name="authentication">
   <choice>
      <value></value>
      <value>plain</value>
      <value>secure</value>
   </choice>
</element>

and for 

Outgoing authentication also when "use secure authentication" is unchecked between 

<element name="authentication">
    <choice>
       <value></value>
       <value>plain</value>
       <value>secure</value>
       <value>smtp-after-pop</value>
    </choice>
</element>

I suppose that the right choice is <value></value> or not?
Attached file email.it pop3 *.xml v2 (obsolete) —
Changed <authentication></authentication> according to comment #2
Attachment #432758 - Attachment is obsolete: true
Attachment #432848 - Flags: review?(bwinton)
Attachment #432758 - Flags: review?(bwinton)
Attached patch email.it.pop3 (v3) (obsolete) — Splinter Review
Fix issue on <username> value.
Attachment #432848 - Attachment is obsolete: true
Attachment #433121 - Flags: review?(bwinton)
Attachment #432848 - Flags: review?(bwinton)
comment #2 and comment #3 are obsolete
Attached file email.it.imap (v1) (obsolete) —
add imap configuration for review
Attachment #433125 - Flags: review?(bwinton)
Summary: [Autoconfiguration] Add support for email.it (pop3) mail account → [Autoconfiguration] Add support for email.it mail account
Comment on attachment 433121 [details] [diff] [review]
email.it.pop3 (v3)

>      <incomingServer type="pop3">
>         <hostname>popmail.email.it</hostname>
>         <port>993</port>

Shouldn't that be port 995?

>         <socketType>SSL</socketType>
>         <username>%EMAILADDRESS%</username>
>         <authentication>plain</authentication>
>      </incomingServer>

And since the name of the file has to be "email.it", I'ld really like to see the POP3 incomingServer as a commented-out block inside of the IMAP config file.

Thanks,
Blake.
Attachment #433121 - Flags: review?(bwinton) → review-
Comment on attachment 433125 [details]
email.it.imap (v1)

>      <outgoingServer type="smtp">
>         <hostname>smtp.email.it</hostname>
>         <port>25</port>

It looks like smtp.email.it responds on port 587, which we prefer to use over port 25.

>         <socketType>plain</socketType>
>         <username>%EMAILADDRESS%</username>
>         <authentication>plain</authentication>

smtp.email.it also advertises STARTTLS, so sending the user's login and password over the internet in cleartext is even worse than normal.  ;)

Please change the port, the socketType, and add the POP3 settings as a commented-out block of XML.

Thanks,
Blake.
Attachment #433125 - Flags: review?(bwinton) → review-
Attached file email.it (v4) (obsolete) —
Fixes based on :bwinton comments.
Attachment #433121 - Attachment is obsolete: true
Attachment #433125 - Attachment is obsolete: true
Attachment #434266 - Flags: review?(bwinton)
Attached file email.it (v5) (obsolete) —
I forgot to comment <pop3> node. I'm sorry.
Attachment #434266 - Attachment is obsolete: true
Attachment #434298 - Flags: review?(bwinton)
Attachment #434266 - Flags: review?(bwinton)
Attached file email.it (v6) (obsolete) —
Attachment #434298 - Attachment is obsolete: true
Attachment #434300 - Flags: review?(bwinton)
Attachment #434298 - Flags: review?(bwinton)
Attached file email.it (v7) (obsolete) —
I'm tired tonight, I'm sorry blake :-D
Attachment #434300 - Attachment is obsolete: true
Attachment #434304 - Flags: review?(bwinton)
Attachment #434300 - Flags: review?(bwinton)
Blake, maybe now I have to ask only for second review to :BenBu ?
Comment on attachment 434304 [details]
email.it (v7)

(In reply to comment #12)
> Created an attachment (id=434304) [details]
> email.it (v7)
> 
> I'm tired tonight, I'm sorry blake :-D

Heh.  No worries.  I'm happy with it.  Over to Ben for the second review.

Later,
Blake.
Attachment #434304 - Flags: review?(bwinton)
Attachment #434304 - Flags: review?(ben.bucksch)
Attachment #434304 - Flags: review+
1.
+ <leaveMessagesOnServer>true</leaveMessagesOnServer>

lalala

2. Please add URL where the config is described.
3. <authentication>plain</authentication>
IMAP and POP servers support CRAM-MD5. Use it:
<authentication>secure</authentication>
Not for SMTP, though.

SMTP SSL 465 doesn't work, but IMAP and POP SSL work, and SMTP STARTTLS works, so that'd fine.
4. Please put the pop server underneath the imap server, not inside it, and remove the tabs.
Attached file email.it (v8) (obsolete) —
according to comment #15 and comment #16
Attachment #434314 - Flags: review?(ben.bucksch)
5. sorry, I missed this:

<displayName>email.it - The professional email</displayName><displayShortName>email.it</displayShortName>

No advertising space here. :)
Seems like they have no proper name, so maybe just:

<displayName>email.it</displayName>
<displayShortName>email.it</displayShortName>

?

6.
From the ISP page, I see that they apparently want us to set the "IMAP server directory" to "INBOX". (That's the only non-default value I could see on that screen.) Is that necessary? If so, can you make a note about that in the comment section, below the URL, please?
7. Oh, critical: IMAP SSL port is wrong, it must be 993.
Attached file email.it (v9)
Fixes based on :BenBu comment #18 and comment #19
Attachment #434314 - Attachment is obsolete: true
Attachment #434486 - Flags: review?(ben.bucksch)
Attachment #434314 - Flags: review?(ben.bucksch)
I made 2 minor changes:
1. removed tabs and
2. changed "must" to "should" for the "INBOX" server directory pref

Commited as revision 64702.
FIXED
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Attachment #434304 - Flags: review?(ben.bucksch)
Attachment #434304 - Attachment is obsolete: true
Attachment #434486 - Flags: review?(ben.bucksch) → review+
Component: ispdb → ISPDB Server
Product: Mozilla Messaging → Webtools
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: