EmailDiscussions.com  

Go Back   EmailDiscussions.com > Discussions about Email Services > Email Comments, Questions and Miscellaneous
Register FAQ Members List Calendar Today's Posts
Stay in touch wirelessly

Email Comments, Questions and Miscellaneous Share your opinion of the email service you're using. Post general email questions and discussions that don't fit elsewhere.

Reply
 
Thread Tools
Old 23 Jan 2010, 01:59 PM   #1
schmoe
Essential Contributor
 
Join Date: Oct 2003
Posts: 385
seeking free email forwarding service with flexible addressing

I am looking for a free email forwarding service similar to endjunk.com with the following features:

- Free
- Provides flexible addressing that I control (ie anythinghere@schmoe.endjunk.com or schmoe+anythinghere@endjunk.com), and ability to use the flexibility without having to set it up in advance at the forwarding site.
- Minimum configuration
- Not on every email providers black list (downside of endjunk)
- Reasonable up time

e4ward.com seems to be the best one so far. Any other suggestions?
schmoe is offline   Reply With Quote

Old 23 Jan 2010, 08:19 PM   #2
jeffpan
The "e" in e-mail
 
Join Date: Sep 2005
Location: Hong Kong
Posts: 2,531

Representative of:
tls-mail.com
akapost.com
jeffpan is offline   Reply With Quote
Old 23 Jan 2010, 11:35 PM   #3
janusz
Intergalactic Postmaster
 
Join Date: Feb 2006
Location: EU
Posts: 5,016
The free version of akapost offers only one 'anonymous' address redirected to/from one 'real' address.
janusz is offline   Reply With Quote
Old 24 Jan 2010, 12:31 AM   #4
ReuvenNY
 Moderator 
 
Join Date: Mar 2002
Location: New York
Posts: 4,278
Doesn't Gmail allow + addressing? (schmoe+anythinghere@gmail.com)
ReuvenNY is offline   Reply With Quote
Old 24 Jan 2010, 12:38 AM   #5
janusz
Intergalactic Postmaster
 
Join Date: Feb 2006
Location: EU
Posts: 5,016
Yes, it does
janusz is offline   Reply With Quote
Old 24 Jan 2010, 01:30 AM   #6
xmailer
Intergalactic Postmaster
 
Join Date: Jun 2002
Location: USA
Posts: 5,485
The subdomain addressing method has long seemed far superior to "plus" addressing, since many don't seem to accept the latter as a properly formatted email address. In fact, just yesterday I was opening a new AOL email address for a friend, and decided to use one of my own Gmail addresses as a temporary alternate email address in the AOL signup form, using a plus address with the first name of the person I was opening the account for after the plus sign, but AOL wouldn't accept it as a "properly formatted" email address.
xmailer is offline   Reply With Quote
Old 24 Jan 2010, 01:38 AM   #7
janusz
Intergalactic Postmaster
 
Join Date: Feb 2006
Location: EU
Posts: 5,016
Of course both 'plus addressing' and 'subdomain addressing' have a potential weakness: the real address can be trivially deducted from either by a malicious human (and by an automated address harvester as well).

From this point of view 'disposable' addresses, of the type offered e.g. by sneakemail, are very safe to use.
janusz is offline   Reply With Quote
Old 24 Jan 2010, 01:47 AM   #8
schmoe
Essential Contributor
 
Join Date: Oct 2003
Posts: 385
One small downer on gmail as filter and forwarder - Gmail does not give you the ability to filter based on bcc. So if you have a gmail filter to forward messages sent to schmoe+anything@gmail.com to schmoe@realaddress.com, it will only work if the message has the address on the TO or CC line, and not on the BCC line.

It is a very minor thing, certainly not a show stopper.
schmoe is offline   Reply With Quote
Old 24 Jan 2010, 01:55 AM   #9
schmoe
Essential Contributor
 
Join Date: Oct 2003
Posts: 385
Quote:
Of course both 'plus addressing' and 'subdomain addressing' have a potential weakness: the real address can be trivially deducted from either by a malicious human (and by an automated address harvester as well).

From this point of view 'disposable' addresses, of the type offered e.g. by sneakemail, are very safe to use.
Yes, this is more of a disadvantage for big, well known services.

As an endjunk user (when the service is actually working), once every couple of months I would get pelted with hundreds of blowback spam messages, or whatever the term is for when your address is fraudulently used as the source of spam mail, and you receive hundreds of responses informing you that such-n-such address doesn't work, or such-n-such person was on vacation. Each of addresses that were used were addresses that I had never used before. The spammer knew that endjunk addresses could be twisted in any form.
schmoe is offline   Reply With Quote
Old 24 Jan 2010, 01:56 AM   #10
xmailer
Intergalactic Postmaster
 
Join Date: Jun 2002
Location: USA
Posts: 5,485
While I didn't realize that it was blacklisted by many, as the OP said, endjunk.com has long had a security measure of a sort against "simple" harvesting by allowing the user to optionally set a "pass phrase", or a character string which must be in the user name part of every newly-created address in order for it to be accepted. While that doesn't provide absolute security against the creation of "bogus" addresses by a third party, it does make it somewhat more difficult. They also give the user the option to not allow email addresses to be created "on the fly", but only allowing addresses which are actually explicitly created by the user him/herself in the endjunk account interface.

The only problem is, these options don't seem to work reliably as advertised.

Otherwise, while it may have its shortcomings, and like any "smaller" service, who knows how long it may continue to have a "limited" free level of service, another one which works similar to Endjunk (at least in being based on subdomain addressing rather than plus-addressing, and allowing the user to create addresses "on the fly", although their other features differ somewhat), is http://www.otherinbox.com/.
xmailer is offline   Reply With Quote
Old 24 Jan 2010, 02:24 AM   #11
kelly
Senior Member
 
Join Date: Jun 2004
Location: Vancouver, Canada
Posts: 116
Quote:
Originally Posted by schmoe View Post
One small downer on gmail as filter and forwarder - Gmail does not give you the ability to filter based on bcc.
Yes, it does!
kelly is offline   Reply With Quote
Old 24 Jan 2010, 03:51 AM   #12
schmoe
Essential Contributor
 
Join Date: Oct 2003
Posts: 385
Quote:
Yes, it does!
Cool... thanks...
schmoe is offline   Reply With Quote
Old 24 Jan 2010, 11:48 AM   #13
jeffpan
The "e" in e-mail
 
Join Date: Sep 2005
Location: Hong Kong
Posts: 2,531

Representative of:
tls-mail.com
Quote:
Originally Posted by ReuvenNY View Post
Doesn't Gmail allow + addressing? (schmoe+anythinghere@gmail.com)
That's so easy to scratch the real email from the "anonymous" gmail.

Quote:
# cat gmail.pl
#!/usr/bin/perl -w
while(<DATA>) {
s/\+[^@]+//; print;
}

__DATA__
someone+anything@gmail.com
sometwo+abc123@gmail.com
somethree+anonymous@gmail.com
somefour+nospam@gmail.com

# ./gmail.pl
someone@gmail.com
sometwo@gmail.com
somethree@gmail.com
somefour@gmail.com
jeffpan is offline   Reply With Quote
Old 24 Jan 2010, 12:07 PM   #14
xmailer
Intergalactic Postmaster
 
Join Date: Jun 2002
Location: USA
Posts: 5,485
I've never considered plus-addressing of any great use in "cloaking" a Gmail address, but when I have used it (which has been very rarely) it has generally been more for the purpose of helping to expedite sorting, etc. via the filters.
xmailer is offline   Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +9. The time now is 09:09 AM.

 

Copyright EmailDiscussions.com 1998-2022. All Rights Reserved. Privacy Policy