active questions tagged email-client - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:54:14Zhttp://stackoverflow.com/feeds/tag/email-clienthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1766976/parsing-response-end-with-extended-smtp-esmtp0parsing response end with extended SMTP (ESMTP)Mike Trader2009-11-19T22:18:15Z2009-11-19T22:28:02Z
<p>To use an example response from google when sent "EHLO":</p>
<pre><code>250-mx.google.com at your service, [66.501.941.15]
250-SIZE 35651584
250-8BITMIME
250-AUTH LOGIN PLAIN
250-ENHANCEDSTATUSCODES
250 PIPELINING
</code></pre>
<p>Hex:</p>
<p>32 35 30 2D 6D 78 2E 67 6F 6F 67 6C 65 2E 63 6F 6D 20 61 74 20 79 6F 75 72 20 73 65 72 76 69 63 65 2C 20 5B 39 32 2E 34 32 31 2E 35 36 35 2E 34 32 5D 0D 0A 32 35 30 2D 53 49 5A 45 20 33 35 36 35 31 35 38 34 0D 0A 32 35 30 2D 38 42 49 54 4D 49 4D 45 0D 0A 32 35 30 2D 41 55 54 48 20 4C 4F 47 49 4E 20 50 4C 41 49 4E 0D 0A 32 35 30 2D 45 4E 48 41 4E 43 45 44 53 54 41 54 55 53 43 4F 44 45 53 0D 0A 32 35 30 20 50 49 50 45 4C 49 4E 49 4E 47 0D 0A </p>
<p>Since the SMTP spec states that a line must end with a CR LF (0D 0A), we can parse on those two bytes to find lines, but how do we determine the end of the response?</p>
<p>Over satellite, responses can be broken into pieces with a significant delay between. This
means a response <em>could</em> end after a CR LF and not be complete ie:</p>
<pre><code>250-mx.google.com at your service, [66.501.941.15]
250-SIZE 35651584
250-8BITMIME
</code></pre>
<p>Any logic that looks for a trailing CR LF would then assume the response is complete. IN this case I am using CryptLib to perform the SLL tunnel, but I can create the port with my own code and pass it to the library if there is some way to get an "end of response".</p>
http://stackoverflow.com/questions/1718636/is-there-a-current-or-upcoming-standard-used-by-a-current-email-client-that-lets1Is there a current or upcoming standard used by a current email client that lets one use Javascript in an email?Matt2009-11-11T22:48:16Z2009-11-11T22:58:11Z
<p>I have a system that emails programmatically generated emails hundreds of times daily. They are going to open in outlook which I know will render the HTML differently than IE and disable scripting. But are there any upcoming standards that will allow one to JavaScript-ify their HTML emails?</p>
<p>Will it always be to big of a security risk? Is there no way for a client such as gmail to limit all JS operations to inside the body of the message? Will always be just too risky? What about future versions of outlook like office 2010?</p>
http://stackoverflow.com/questions/1676017/latex-style-citations-in-emacs-and-wanderlust0Latex-style citations in emacs and WanderlustIlya Zakreuski2009-11-04T19:23:55Z2009-11-05T21:06:56Z
<p>I'm reading my email in emacs using Wanderlust client. I'm subscribed on a bunch of mailing lists and quite often I'm noticing well-formatted emails which employs LaTeX-style (most simple explanation for desired behavior I guess) citations for links.</p>
<p>For example:</p>
<pre><code>A side note: as written in [1], "7.5. Hints and Tips for Effective Use of
Helgrind":
3. Avoid POSIX condition variables.
Condition variables are at the core of lbzip2. I published an article on
this topic in the form of a reddit self-post, see [2].
Thanks again!
lacos
[0] http://www.cert.fi/haavoittuvuudet/joint-advisory-archive-formats.html
[1] http://valgrind.org/docs/manual/hg-manual.html#hg-manual.effective-use
[2] http://www.reddit.com/r/programming/comments/9ynxv/utter_verbiage_how_to_design_condition_variables/
</code></pre>
<p>Could please someone point me to the most convenient way of creating of such citations using emacs? I hope that they aren't created manually and there is a tool which I'm not aware of. :)</p>
<p>Thanks!</p>
<p>Update: I realized that I was actually looking for <a href="http://orgmode.org/manual/Footnotes.html" rel="nofollow">footnotes</a>, not 'citations'. Thanks all!</p>
http://stackoverflow.com/questions/1675042/how-can-i-get-the-email-sender-address0How Can I Get The Email Sender AddressNathan Campos2009-11-04T16:37:44Z2009-11-04T16:43:16Z
<p>Hello,</p>
<p>I'm developing a email manager application(like outlook) in C# and I want to do a reply function, but how I can get the email address of the user that sent the email that will be replyed? Thanks.</p>
http://stackoverflow.com/questions/1287440/sending-mail-from-java0Sending mail from javacdb2009-08-17T11:26:46Z2009-10-23T20:14:51Z
<p>What is the easiest way to send and receive mails in java.</p>
http://stackoverflow.com/questions/1579453/how-to-duplicate-an-imap-mailbox0How to duplicate an IMAP mailboxDan Goldstein2009-10-16T17:51:18Z2009-10-16T17:51:18Z
<p>I would like to create an email client that can access multiple IMAP mailboxes. I'd also like a copy of all emails for processing. What is the best way to do this using IMAP commands? </p>
<p>Right now I have a script that iterates over the folders, FETCHing FLAGS on 1:* to see what's been read and if any previously read messages have been marked as new, then FETCH BODY.PEEK on all of the messages I don't have in my database. Is there a better way?</p>
http://stackoverflow.com/questions/1537578/how-to-unit-test-an-email-client2How to unit test an email clientMatt Moriarity2009-10-08T12:46:17Z2009-10-08T14:15:50Z
<p>I'm working on a desktop email client right now, and I want to unit test my backend. However, I can't see a way to make that work. In order for my code to work, it has to connect to a working mail server. Unless I tie my unit tests to an email account, and make sure that account matches the state my tests expect, I don't see how I can manage this.</p>
<p>Does anyone have any ideas on how to test this sort of application, where it relies on external factors by design?</p>
<p>EDIT:</p>
<p>To add some details: I'm working on a C++ higher level mail client library for my application, which uses libEtPan, a C library, to actually handle the details of connecting to the mail server and interacting with it.</p>
http://stackoverflow.com/questions/1393675/sending-e-mails-through-microsoft-exchange-server0Sending E-Mails through Microsoft Exchange ServerAhmad Farid2009-09-08T12:17:23Z2009-09-26T04:00:02Z
<p>I would like to send e-mails through a Microsoft Exchange server. Is it even possible through SMTP for example? The server is "be01.ix.netplace.com" in case this will help in anything. I tried many sample codes but they all didn't work.
Thanks for trying to help :)</p>
http://stackoverflow.com/questions/1424623/displaying-images-in-entourage-20040Displaying images in Entourage 2004George V. Reilly2009-09-15T00:58:35Z2009-09-15T17:37:56Z
<p>We're sending out HTML newsletters, which display reasonably well in a number of desktop and web-based email readers.</p>
<p>Entourage 2004 refuses to display images, even after clicking "To protect your privacy, some pictures in this message were not downloaded. <strong>Download pictures</strong>".</p>
<p>The images are classic</p>
<pre><code><img src="some-valid-url" width="whatever" height="whatever" alt="whatever">
</code></pre>
<p>The sender is already in Entourage's Address Book and "Automatically download pictures from my Address Book contacts" is ticked in the Preferences Security pane.</p>
<p>Based on my cursory reading, Entourage might work if I embed the images as MIME attachments. </p>
<p>Is there no way to make <code><img src=absolute-url></code> work?</p>
<p><strong>Update</strong>: I tried Entourage 2008 and it works fine.</p>
http://stackoverflow.com/questions/846800/persist-header-data-across-reply-emails0Persist header data across reply emailsmickyjtwin2009-05-11T05:24:16Z2009-08-28T19:50:37Z
<p>Am trying to determine the best way to persist information from an originating email, through to a reply back.</p>
<p>Essentially, it is to pass a GUID from the original email (c#), whereby when the receiver replies back, that GUID is also sent back for reference.</p>
<p>I have tried setting the MessageID, whereby using Outlook, the In-Reply-To value is set with the original ID, however using some webclient email systems, that value is not created on reply. Is there another way to sent this info through email headers?</p>
http://stackoverflow.com/questions/1235534/what-is-the-behavior-difference-between-return-path-reply-to-and-from1What is the behavior difference between return-path, reply-to and from?Geo2009-08-05T20:24:11Z2009-08-07T21:45:42Z
<p>On our mailing application we are sending emails with the following header:</p>
<pre><code>FROM: marketing@customer.com
TO: subscriber1@domain1.com
Return-PATH: bouncemgmt@ourcompany.com
</code></pre>
<p>The problem that we are facing is that some email servers will bounce back a message immediately and use the from or reverse path (marketing@customer.com) instead to our bounce mgmt server. We want to know if we modify in the header the reply-to to be the same as the return-path if we will be able to catch all bounces.</p>
<p>Any other ideas are welcome?</p>
<p>We are using the following documents as references:
<a href="http://en.wikipedia.org/wiki/Variable%5Fenvelope%5Freturn%5Fpath" rel="nofollow">VERP</a>
<a href="http://james.apache.org/server/rfclist/smtp/rfc0821.txt" rel="nofollow">RFC</a>
<a href="http://en.wikipedia.org/wiki/Bounce%5Fmessage" rel="nofollow">Bounce Messages</a></p>
<p><a href="http://scriptolog.blogspot.com/2007/08/smtp-log-parsing.html" rel="nofollow">SMTP Log Parsing to get Bounces</a></p>
<p>EDIT 1: A few more bits of information to see if we can get this resolve. </p>
<p>We want to know at what point the email server relaying the message will choose to use the reply-to versus the return-path. We have notice that when the first smtp server relaying the message gets rejected it sends it to the reply-to, but when it happens after one hop it sends it to the return-path. </p>
http://stackoverflow.com/questions/1224980/processing-email-with-a-server-application1Processing email with a server applicationRafael Almeida2009-08-03T22:45:16Z2009-08-03T22:49:47Z
<p>I'm afraid this is a very generic question, but unfortunately my question is exactly how to get down to the 'specifics' on this particular issue. Let me be more specific:</p>
<p><strong>I want to create an "email listener" application</strong> - something that would run in my server, so that users could send email to a particular address and this application would fetch the email and do something with its contents. In other words, <strong>I want to use common e-mail as a method of user input</strong>.</p>
<p>You probably know Remember The Milk. It has a feature where you can e-mail tasks to a particular address and it would be added to your task list. I want to know how this is done 'under the hood'.</p>
<p>For answers, general concepts and articles are fine, but you can obviously point to technology-specific resources, as they can be 'reverse-engineered' so the concepts are extracted. Thanks in advance!</p>
http://stackoverflow.com/questions/1092723/how-do-you-build-a-web-based-email-client-using-php-7How do you build a web based email client using PHP?panidarapu2009-07-07T14:37:54Z2009-07-28T22:30:19Z
<p>I would like to learn how to build a web-based email client in PHP (similar to yahoo and gmail).</p>
<p>Does anyone know how I can get started with this?</p>
<p>I would like my system to be able to send and receive email.</p>
http://stackoverflow.com/questions/1071754/trigger-a-script-when-bouncing-mail-in-pine0Trigger a script when bouncing mail in Pine.dreeves2009-07-01T23:05:13Z2009-07-02T01:53:34Z
<p>When I forward an email in Pine it goes through an outgoing filter script that I can specify. But not when I bounce an email. I don't care about literally filtering my bounced messages but I want something programmatic to happen when I bounce a message. (This is for a hack to implement an email snooze feature where you can say "make this reappear in my inbox tomorrow, or some number of days in the future".)</p>
<p>A roundabout way to do this would be with a daemon that monitors my sent-mail folder and notices when bounced emails appear there (ie, when the "From" is not me), extract them, and do its thing.</p>
<p>Is there a better way?</p>
http://stackoverflow.com/questions/1008184/thunderbird-is-not-updating-the-message-frequently-3Thunderbird is not updating the message frequently [closed]joe2009-06-17T16:30:10Z2009-06-17T16:44:55Z
<p>I am using the Thunderbird e-mail client for office mail, but I am not getting mail until I reached that particular folder. </p>
<p>What is the problem? </p>
http://stackoverflow.com/questions/916440/third-party-email-senders1Third Party Email SendersMike C.2009-05-27T15:34:09Z2009-06-10T01:27:02Z
<p>I am sending email from my asp.net application, and I wanted to see if anybody could recommend a third party that will actually send the emails. Ideally they should have some sort of web service available that I can send a request to.</p>
http://stackoverflow.com/questions/18606/accessing-an-exchange-server-without-outlook2Accessing an Exchange Server without OutlookThomas Owens2008-08-20T19:11:32Z2009-05-27T08:50:28Z
<p>Is there a method of accessing an Exchange server that does not have IMAP or POP3 enabled without Outlook? It does not appear that Outlook Express supports Exchange (only IMAP and POP3).</p>
http://stackoverflow.com/questions/709635/sending-mail-from-batch-file3sending mail from Batch fileunknown (google)2009-04-02T13:09:31Z2009-04-29T21:42:31Z
<p>We have a script to backup files. After the backup operation is over, we would like to send a report as an email notification to some of our email addresses.</p>
<p>How could this be done?</p>
http://stackoverflow.com/questions/793404/do-most-email-clients-support-mhtml0Do most email clients support MHTML?John2009-04-27T13:05:46Z2009-04-27T14:48:34Z
<p>Do all modern email clients (online and desktop apps) support <a href="http://people.dsv.su.se/~jpalme/ietf/mhtml.html" rel="nofollow">MHTML email content</a> in which images and other resources are embedded in the email?</p>
<p>In addition is this the standard that should be used to get a consistent HTML email message out or is it better to send HTML emails with linked resources.</p>
<p>Thanks in advance</p>
<p>Note: I am aware of the <a href="http://www.georgedillon.com/web/html%5Femail%5Fis%5Fevil.shtml" rel="nofollow">7 reasons why HTML e-mail is EVIL</a> but it is essential in this case. Also I have seen the article on <a href="http://www.campaignmonitor.com/css/" rel="nofollow">css support in HTML emails</a> and know these pitfalls.</p>
http://stackoverflow.com/questions/682812/effectively-design-a-simple-mail-client0Effectively Design a Simple Mail ClientTGV2009-03-25T18:12:50Z2009-03-27T19:11:12Z
<p><code><strong>Requirement :</strong> JAVA desktop mail client which could connect to existing gmail,y! mail a/c & will allow receive/send mails, support offline view of mails, plus with more features as & when it comes. i am using Java Mail Api's</code></p>
<p><code><strong>Underlying Mail Storage:</strong> I have decided to use <b>HSQLDB</b> with
<b>Hibernate</b>. Email content can have attachments , HTML , so i decided to use LONGVARBINARY type to store the email Body & attachments.</code></p>
<blockquote>Please let me know whether this approach is good & will it give me good performance when it comes to retrieval. Also give me some pointers on how to store java email objects in HSQLDB into LONGVARBINARY type & how to dereference it to get the actual data. <b>??</b><br><br>
</blockquote>
<p><code><strike>2)I am confused over this because , with Approach 1 , i will end up storing all mail contents somehow on my local disk to enable offline viewing. And imagine if i have 1GB of mails ></strike></code></p>
http://stackoverflow.com/questions/497659/can-i-add-x-headers-to-a-lotus-notes-email-message-without-com0Can I add x-headers to a Lotus Notes email message without COM?Dan2009-01-30T23:20:49Z2009-02-06T13:28:32Z
<p>Trying to add a custom header item to a Lotus Notes email item, from the context of a Notes Client Extension before the mail is sent from the Lotus Notes client app.</p>
<p>Is this possible?</p>
<p>I'm looking along the lines of using something in the NSFItemSetText family of functions if at all possible, as opposed to the lotus script object model which I gather is COM components.</p>
<p>I'm implementing this in inherited code and have no reference on where I should be looking for a tutorial on this sort of thing.</p>
<p>Basic googling has led me into the realms of the horrible IBM reference site, and there simply must be something out there better than that.</p>
http://stackoverflow.com/questions/296603/does-your-email-client-let-you-add-custom-headers-programmatically9Does your email client let you add custom headers programmatically?dreeves2008-11-17T19:32:33Z2009-01-30T14:39:47Z
<p>I'm working on an anti-spam project (<a href="http://centmail.net" rel="nofollow">centmail</a>) that involves having the sender use a client plugin that adds a custom header (as well as a signature, but that part's <a href="http://stackoverflow.com/questions/142319">easier</a>). The general problem is to add an email header to your outgoing mail where the contents of the header field is determined dynamically for each message.</p>
<p>Surprisingly, this does not seem to be possible in Pine/Alpine. Pine lets you specify a filter script for outgoing mail but only the body and not the headers get passed through it. You can of course define custom headers in the Pine settings but I see no way to dynamically change the contents of them.</p>
<p>I'd be grateful to hear how to do this in other email clients (Thunderbird, Outlook, Evolution, Mutt, etc). And of course if I'm wrong about Pine.</p>
http://stackoverflow.com/questions/405247/any-way-to-synchronise-a-sent-folder-between-a-desktop-emailer-and-an-online-se0Any way to synchronise a "Sent" folder between a desktop emailer and an online service?Philippe Grondier2009-01-01T18:16:44Z2009-01-01T18:42:55Z
<p>I have gradually abandonned my offline emailer and switched to an online one, but I still use it to regularly collect my received emails and archive them. Is there something that would also allow me to collect the mails originaly sent online (other than systematically cc'ing them to myself), or (even better) to 'synchronise' the <strong>sent</strong> folders of the 2 emailers? </p>
http://stackoverflow.com/questions/81225/can-i-make-squirrelmail-in-firefox-be-windows-xps-default-mail-client1Can I make squirrelmail-in-firefox be Windows XP's default mail client? [closed]Simon2008-09-17T08:48:42Z2008-09-17T11:01:54Z
<p>I'd like mailto: links in web sites and other applications to open a new window or tab in firefox with the squirrelmail compose window. I don't mind having to log in if I haven't already.</p>