Sponsored Content
Full Discussion: No activation email received
Contact Us Forum Support Area for Unregistered Users & Account Problems No activation email received Post 302934885 by BatterBits on Wednesday 11th of February 2015 05:25:56 PM
Old 02-11-2015
Thanks Scott

I have my own domain, mail is forwarded to my gmail account - no sign of your email in any of the spam/junk bins

I'm in now, so the issue is moot - but just in case you wanted to know
 

9 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Did not received any email for account activation

hi I did not received any such email for account activation nor i am able to see any status in my profile. Am i missing anything?? :confused: Please help Appreciated. (0 Replies)
Discussion started by: bhush782003
0 Replies

2. Forum Support Area for Unregistered Users & Account Problems

I Recieved An Email Without An Activation Link

I Didn't get the activation link with the e-mail it Said: Dear JJRadio, Thank you for registering for the The UNIX Forums forums. Before we can activate your account one last step must be taken to complete your registration. Please note - you must complete this last step to become a... (1 Reply)
Discussion started by: JJRadio
1 Replies

3. Forum Support Area for Unregistered Users & Account Problems

I need another activation email

Hi neo I registered yesterday,but i don't receive the activation email,can u send again? thanks! (1 Reply)
Discussion started by: swrd
1 Replies

4. Forum Support Area for Unregistered Users & Account Problems

Not Receiving Activation Email

I've tried suggestions from previous threads sending an activation email several times. I'm not sure if email server is blocking domain name. What is the domain name of the activation email...unix.com? (1 Reply)
Discussion started by: BigSky
1 Replies

5. Forum Support Area for Unregistered Users & Account Problems

no email received

I have tried to register and got a message saying an email would be sent but no email has turned up. Could you try again please? (1 Reply)
Discussion started by: lookingfor help
1 Replies

6. Forum Support Area for Unregistered Users & Account Problems

Still waiting for activation email

Hi, I've been waiting for about 2 hours to receive my activation email but it hasn't arrived yet. I followed the 'resend activation information' link so I'm now expecting 2 activation emails, neither has arrived yet. How long do I expect this to take? I've tested my email account from other... (2 Replies)
Discussion started by: cambridge
2 Replies

7. UNIX for Advanced & Expert Users

problem on email sent but not received

hi.. I have the porblem where the email was sent but not received by users.. The message as below:- Dec 16 11:42:04 isp postfix/smtp: A80042B4B: to=<user_name@example.com.my>, relay=smtp.example.com.my:25, delay=890, delays=0.17/0.02/31/859, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued... (1 Reply)
Discussion started by: bh_hensem
1 Replies

8. Forum Support Area for Unregistered Users & Account Problems

I didnt get the activation email !!

I tried to register twice but without success ,I used the Hotmail email on both of them. Im sure I typed the correct email, because I used " copy and paste" and I did the "re-sent the activation" option (10 Replies)
Discussion started by: BaxxterHp
10 Replies

9. Forum Support Area for Unregistered Users & Account Problems

Have yet to receive activation email

Good Afternoon, I attempted to register on this forum yesterday using the username 'DBirks', however I have yet to receive the required activation email. I have checked both my inbox and junk e-mail folder on my email client as well as on owa, but I have not seen any sign of it. I have... (1 Reply)
Discussion started by: Unregistered
1 Replies
mailexec(1)							Mail Avenger 0.8.3						       mailexec(1)

NAME
mailexec - run program on messages in mbox file or maildir SYNOPSIS
mailexec [-nvFR] mailbox program [arg ...] DESCRIPTION
mailexec runs a program over every message in mailbox, which must be an mbox-format mail file or maildir directory. For each message encountered, mailexec executes program with the specified arguments, supplying the message as standard input. mailexec synthesizes a "From " line and a "Return-Path:" header field for each message if the message does not already contain one. (This behavior can be modified by the -F and -R flags, described below.) When parsing mbox format files, mailexec unescapes "From " lines. If a line begins with one or more ">" characters followed by "From ", mailexec deletes one of the ">" characters. If you do not want this unescaping behavior, see the formail(1) utility, which has a -s flag that performs a similar function to mailexec. OPTIONS -n When processing a maildir, causes mailexec to look exclusively at "new" messages that have not yet been moved to the cur directory. -v Turns on verbose mode. If mailbox is a maildir, mailexec prints out the name of each file it processes inside the maildir. If mailbox is an mbox format file, mailexec prints the message-id of each message it processes (as long as messages have a message-id header). -F Suppresses printing of the initial "From " line at the beginning of each message. -R Suppresses printing of initial "Return-Path:" lines. EXAMPLES
To get the same behavior as the Unix from(1) command on a mail directory dir, you can run either of the following two commands: mailexec -n dir head -1 mailexec -n dir sed -ne 1p To convert an mbox-format file mbox into a maildir directory dir, you can run: mailexec mbox deliver dir/ Conversely, to convert maildir dir into an mbox-format file mbox, run: mailexec dir deliver mbox To train the spamassassin filter on a mail folder called spam containing unwanted messages, run: mailexec spam sa-learn --spam Note that this works whether spam is an mbox format file or a maildir directory. If you have an old mbox file or maildir directory box and wish to "import" the old mail into your web mail account, say example@gmail.com, you can run: mailexec -F box sendmail example@gmail.com Note again that this works whether box is an mbox format file or a maildir directory. SEE ALSO
avenger(1), deliver(1), dotlock(1), avenger.local(8) The Mail Avenger home page: <http://www.mailavenger.org/>. BUGS
When reading from a maildir and synthesizing a "From " line, mailexec guesses the delivery date of the message based on the name of the file, which works in practice but could be considered dangerous since file names in maildirs are supposed to be opaque. Thus, while generally mailexec places sensible dates in "From " lines and processes maildir messages in order of delivery, it might be unwise to rely on this behavior. mailexec generates the time for the "From " line in the local time zone, as is customary on Unix. This could lead to loss of information when transferring mailboxes across time zones or combining mailboxes created in different timezones. Moreover, this practice is incompatible with qmail, which uses GMT in the "From " line. mailexec expects that if there is a "Return-Path:" header field, it will be the first header field in the message (possibly after the initial "From " line, which is not itself a header field). There are many different variants of the mbox message format. mailexec expects the "mboxrd" variant, in which each message is delimited by a "From " line at the beginning and a blank line at the end, and every line beginning with either "From " or one or more ">" characters followed by "From " is escaped by adding another ">" character. In particular, this means mailexec will incorrectly parse System V "mboxcl2" files, which use "Content-Length:" header fields to determine message boundaries rather than "From " lines. mailexec attempts to lock mbox format files, but will execute anyway even if it cannot obtain the lock. This allows it to work on read- only files, but if you are highly unlucky could result in the last message being truncated. There is no locking for maildir files. If a maildir is modified while mailexec is running over it, mailexec could miss messages. If you are concurrently manipulating the maildir with a mail reader, maildir could even miss old messages that just happen to have been moved from the new to the cur directory. mailexec will issue a warning if it fails to open a file that it had previously seen when scanning the directory. AUTHOR
David Mazieres Mail Avenger 0.8.3 2012-04-05 mailexec(1)
All times are GMT -4. The time now is 10:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy