Request a new feature in Thunderbird - Message Redirect

Discussion of features in Mozilla Thunderbird
Locked
mrichmond
Posts: 15
Joined: August 3rd, 2004, 1:29 pm

Request a new feature in Thunderbird - Message Redirect

Post by mrichmond »

How do I request a new feature in Thunderbird?

I would like the ability to do a message "redirect"

This is a feature common in a lot of email programs such as Eudora. How it works is :

I receive an email message that should have gone to my colleague.
I choose "Redirect".
A new message is created, but with all original headers intact.
I enter the address it should have been sent to and hit send
My colleague receives the email and it looks to them as if it was sent to them originally.
If my colleague hits "reply" it goes to the original sender - NOT to me


In many email clients the FROM header gets modified to say "originalrecipient@domain.com (By Way Of myemail@domain.com)" so that the "colleague" in the above example knows that it came through me. Also that way they know that it may have been modifed by me before I did the redirect.

How do I go about requesting that this feature gets added to Thunderbird? It is the one major feature of an email program that is missing.
User avatar
R A F
Posts: 999
Joined: December 29th, 2003, 3:28 pm
Location: The Netherlands

Post by R A F »

Does 'Message | Edit as new' from the menu solve your problem?
mrichmond
Posts: 15
Joined: August 3rd, 2004, 1:29 pm

Post by mrichmond »

No. I just tested the Message -> Edit As New to be sure I was accurate.

Message -> Edit As New still puts my address as the FROM address.

The whole point of redirecting a message is that the message appears that it came from the original sender directly to the new recipient.

When I tried Message -> Edit As New and sent it to another email account I have I could not even tell who the original message was from. When I hit reply it went back to my account - not to the original sender.

I tried it on a mesage that specifically had a reply to header as well. In that message it copied accross the reply to header, but still showed the message as coming from me and not from the original recipient.

Basically a "Redirect" feature should make the email message look like it was sent to the final recipient from the original recipient.

It is done by using the original email message headers
User avatar
hansen
Posts: 5268
Joined: June 23rd, 2003, 6:28 am
Location: denmark

Post by hansen »

most smtp servers does not allow this, since this is what spammers do

i know i'm blocking this on our servers
Old Ausdilecce
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Ausdilecce »

Hansen,
I'm curious so please enlighten me

If mrichmond's collegue had the same domain as mrichmond, wouldn't the mail get sent successfully ?
I do realize that if the redirect was to a completely unrelated domain, that should be blocked.

BTW, I have created a *working* extension that provides automatic redirect functionality in TB but have serious reservations about releasing it.
it also can automatically reply ( out-of-office )
and play different sounds depending on the message content
all done with filters but , as I said, it is a dangerous extension because of its spamming potential
User avatar
tam
Posts: 18
Joined: December 10th, 2003, 3:34 am

Post by tam »

ausdilecce wrote:BTW, I have created a *working* extension that provides automatic redirect functionality in TB but have serious reservations about releasing it.


I have to redirect several mails per day, because we use a catchup-all (*@domain.com) account. If you extension allows also redirect "by hand", PLEASE give it to me. Thanks in advance.
User avatar
hansen
Posts: 5268
Joined: June 23rd, 2003, 6:28 am
Location: denmark

Post by hansen »

ausdilecce: depends on how hard you set the limit - i'm not tolerating sending as other domains
Old Ausdilecce
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Ausdilecce »

tam, you can do redirect 'by hand' now.. Forward works for 'several' .. it starts to get annoying at about 30 messages per day..

Aww screw it, the code is there for all to see anyway.. If I managed to do it, anyone could, right.

Ok then, I will clean up all of the debugging code, optimise a bit and release 0.0.1 within the week.

Lookout world :wink:
User avatar
tam
Posts: 18
Joined: December 10th, 2003, 3:34 am

Post by tam »

ausdilecce wrote:Ok then, I will clean up all of the debugging code, optimise a bit and release 0.0.1 within the week.

Cool, thanks ausdilecce
jpgareri
Posts: 1
Joined: July 23rd, 2004, 7:56 am

Post by jpgareri »

tam wrote:
ausdilecce wrote:Ok then, I will clean up all of the debugging code, optimise a bit and release 0.0.1 within the week.

Cool, thanks ausdilecce
Yes, thanks. That will be a great help. I receive mail into a "general office" account, and like to automatically re-direct to specific users.
User avatar
R A F
Posts: 999
Joined: December 29th, 2003, 3:28 pm
Location: The Netherlands

Post by R A F »

ausdilecce wrote:Aww screw it, the code is there for all to see anyway..

Lookout world :wink:

That's the spirit! ;)
Old Ausdilecce
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Ausdilecce »

OK, I will release this extension in 0.0.1 form.

Some things you guys should know
1) the 'new filters' are global across all accounts ( except for news )
2) there is NO UI for setting up filters.. filters are specified in a file whose location is specified in the prefs panel
3) I hve tried to mimic the format of TBs real filters file so the filters is somewhat easy to understand
4) once the extension is installed, you MUST immediately go into the extension's prefs and set the extension up ( with filters file and default id )
5) I will include (in the XPI ) a filters file that you guys can use as a template, just deposit that on your HD somewhere and have the extension's prefs point to it
6) the user can modify the filters file AT ANY TIME because the extension re-reads the file upon receiving incoming mail.
7) the filters themselves ARE VERY BASIC as it is difficult to filter on things like BODY and random headers
. filters that ARE functional follow..
..headerItems (case sensitive)
...subject
...recipients
...ccList
...sender
...priority
..operands (case sensitive)
...is
...isn't
...contains
...doesn't contain
...begins with
...ends with
..Actions (case sensitive)
...Play Sound
...Copy to Folder
...AutoReply
...AutoForward

actionValues are obviously action specific
for Play sound.. the action value must be the path to and filename of the sound to play (in quotes)
...ex "file:///C:/Docs/random3.wav"
for Copy to Folder: the action value must be a valid path to a TB folder (in quotes)
...ex: "mailbox://nobody@Local%20Folders/Inbox/old2"
for AutoReply: the action value must be the text that you want in the body (in quotes)
...ex: <code> "I am sorry, I cannot respond to your message as I am away from my desk for 3 weeks< BR >< BR >Regards,< BR >Your Name"</code>
( I have not tried more advanced html but if you are feeling lucky, go right ahead. )
for AutoForward: the action value is a bit advanced.. its the address to send to, then the text you want, separated by %%
...ex "freak@somedomain.com%%Forwarded on to you by Fred Flintstone"
Old Ausdilecce
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Ausdilecce »

get the xpi here --> www.supportware.net/mozilla/NewFilters.xpi

BTW, to edit the filters file rather easily,
use the extension's prefs panel to browse to the filter's file, while you are in the browse dialog, you can right click on the file in question to open it for editing..

This *is* version 0.0.1 so any blasting, flaming comments will be ignored.

Sane, helpful suggestions/bug reports should be posted here or sent to nf_comments, at, supportware, dot, net
Last edited by Old Ausdilecce on August 4th, 2004, 9:52 pm, edited 1 time in total.
Old Ausdilecce
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Ausdilecce »

OOps,

I *just* realized that the autoForward feature of my extension is NOT true redirect.. am I mistaken in assuming that in order to come really close to it (since many domains prohibit sending *as* someone else ) is to set the reply-to of the forward to the original sender's address (or ,obviously if the message has one, the original sender's replyto address) ?
Rizban
Posts: 1
Joined: July 20th, 2004, 4:55 pm

Post by Rizban »

Thanks for the release. However, as of 9:15 PM PST the above link gets a "The page cannot be found" error. Has anyone been able to download this extension?

TIA

[edit] It now seems to work :-)
Last edited by Rizban on August 4th, 2004, 11:07 pm, edited 1 time in total.
Locked