Sponsored Content
Full Discussion: Email address change issue
Contact Us Forum Support Area for Unregistered Users & Account Problems Email address change issue Post 302716303 by elixir_sinari on Tuesday 16th of October 2012 07:21:31 AM
Old 10-16-2012
Browser.

I had checked in Spam too.

And, thanks.

And, one more thing, my bits seem to have increased by at least 50k, out of nowhere...... (Yes, I know I am being honest Smilie)...

Last edited by elixir_sinari; 10-16-2012 at 08:48 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Send email where # is in the email address - Using Unix

Hi All, How do I send an email using malix where email address contains a #. I have a email address like this : #test@test.com I want to send email like malix -s "TEST" #test@test.com < SOMEFILE I tried \# but doesn't work. Please let me know how we can achieve this? I am in... (1 Reply)
Discussion started by: jingi1234
1 Replies

2. UNIX for Dummies Questions & Answers

mailx- can we change the from address in the email that is sent out.

Hello, Is there anyway to change the from address in the email sent using mailx command? I have the following command: mailx -s $subject xxx@xxxx.com < $mail_mesg This defaults to the following format "acctname@usserver.companyname.com" as the from address in the email. Problem is this... (5 Replies)
Discussion started by: radhika
5 Replies

3. HP-UX

How to change the email from address?

Hi Friends, I am facing one issue with my hpux server. I used to send mail from the hpux server directly to the customer id. By default the from address includes the complete hostname(eg:- user1@hostname.domain.com). My domain name is registered, but this individual hostname is not... (1 Reply)
Discussion started by: arumon
1 Replies

4. AIX

System email address change?

With a recent move to a new data center, the domain for our system emails have changed. We used automated emails with our daily process for informational and report sending. I edited the /etc/mail/sendmail.cf file where it had an entry pointing to the old mail server so I change this to our new... (3 Replies)
Discussion started by: NycUnxer
3 Replies

5. Red Hat

How to change sender email address in mail -s command

Just having trouble trying to figure out what the option is. When I do mail -s "Subject" someuser@example.com I can't seem to specify "from" or "sender" option as I need it for my task. I tried using --f or -f though it didn't work. Can someone please tell me what other option... (0 Replies)
Discussion started by: rockf1bull
0 Replies

6. Shell Programming and Scripting

how to write script to change email address

we have 4000 html pages that need an email address changed. eg) company@yahoo.com to company@hotmail.com we only want the file modified date to be changed when there has been a change to the file. Should I be using grep? I fairly new to UNIX and was told to using something like... (2 Replies)
Discussion started by: mchelle_99
2 Replies

7. Forum Support Area for Unregistered Users & Account Problems

Change email address

How can I change email address registered with my unix.com account (1 Reply)
Discussion started by: hiten.r.chauhan
1 Replies

8. Shell Programming and Scripting

Mailx issue; email address starting with #

Hello All, I have a requirement to generate report and send them to a distribution list. The problem I am facing is when sending out the email using mailx. The email address (DL) we have is starting with # and because of this it's not recognising the email and throwing the below error. ... (2 Replies)
Discussion started by: Pradeep_Raj
2 Replies

9. Forum Support Area for Unregistered Users & Account Problems

Further to my query re: failed attempt to change email address on existing account

Neo Thanks for your reply to my original post, entitled "Problem changing the email address associated with my unix.com account". I am unable to reply to you in that thread, as I am unable to log-on to unix.com! From what you said about purging dormant accounts, it is likely that my account... (1 Reply)
Discussion started by: irb
1 Replies

10. What is on Your Mind?

Please Help Test the Forum Change Email Address Feature

Hi, I was just working on the new usercp and found that the "change your email address" function does not seem to work. In fact, it seems like it has never worked when I look at the code and the database. There seems to be some code missing from a decade ago, but I could be wrong. Could... (9 Replies)
Discussion started by: Neo
9 Replies
Email(3pm)						User Contributed Perl Documentation						Email(3pm)

NAME
Data::Validate::Email - common email validation methods SYNOPSIS
use Data::Validate::Email qw(is_email is_email_rfc822); if(is_email($suspect)){ print "Looks like an email address "; } elsif(is_email_rfc822($suspect)){ print "Doesn't much look like an email address, but passes rfc822 "; } else { print "Not an email address "; } # or as an object my $v = Data::Validate::Email->new(); die "not an email" unless ($v->is_email('foo')); DESCRIPTION
This module collects common email validation routines to make input validation, and untainting easier and more readable. All functions return an untainted value if the test passes, and undef if it fails. This means that you should always check for a defined status explicitly. Don't assume the return will be true. (e.g. is_username('0')) The value to test is always the first (and often only) argument. FUNCTIONS
new - constructor for OO usage new([\%opts]); Description Returns a Data::Validator::Email object. This lets you access all the validator function calls as methods without importing them into your namespace or using the clumsy Data::Validate::Email::function_name() format. Arguments An optional hash reference is retained and passed on to other function calls in the Data::Validate module series. This module does not utilize the extra data, but some child calls do. See Data::Validate::Domain for an example. Returns Returns a Data::Validate::Email object is_email - is the value a well-formed email address? is_email($value); Description Returns the untainted address if the test value appears to be a well-formed email address. This method tries to match real-world addresses, rather than trying to support everything that rfc822 allows. (see is_email_rfc822 if you want the more permissive behavior.) In short, it pretty much looks for something@something.tld. It does not understand real names ("bob smith" <bsmith@test.com>), or other comments. It will not accept partially-qualified addresses ('bob', or 'bob@machine') Arguments $value The potential address to test. Returns Returns the untainted address on success, undef on failure. Notes, Exceptions, & Bugs This function does not make any attempt to check whether an address is genuinely deliverable. It only looks to see that the format is email-like. The function accepts an optional hash reference as a second argument to change the validation behavior. It is passed on unchanged to Neil Neely's Data::Validate::Domain::is_domain() function. See that module's documentation for legal values. is_email_rfc822 - does the value look like an RFC 822 address? is_email_rfc822($value); Description Returns the untainted address if the test value appears to be a well-formed email address according to RFC822. Note that the standard allows for a wide variety of address formats, including ones with real names and comments. In most cases you probably want to use is_email() instead. This one will accept things that you probably aren't expecting ('foo@bar', for example.) Arguments $value The potential address to test. Returns Returns the untainted address on success, undef on failure. Notes, Exceptions, & Bugs This check uses Casey West's Email::Address module to do its validation. The function does not make any attempt to check whether an address is genuinely deliverable. It only looks to see that the format is email-like. is_domain - does the value look like a domain name? is_domain($value); Description Returns the untainted domain if the test value appears to be a well-formed domain name. This test uses the same logic as is_email(), rather than the somewhat more permissive pattern specified by RFC822. Arguments $value The potential domain to test. Returns Returns the untainted domain on success, undef on failure. Notes, Exceptions, & Bugs The function does not make any attempt to check whether a domain is actually exists. It only looks to see that the format is appropriate. As of version 0.03, this is a direct pass-through to Neil Neely's Data::Validate::Domain::is_domain() function. The function accepts an optional hash reference as a second argument to change the validation behavior. It is passed on unchanged to Neil Neely's Data::Validate::Domain::is_domain() function. See that module's documentation for legal values. is_username - does the value look like a username? is_username($value); Description Returns the untainted username if the test value appears to be a well-formed username. More specifically, it tests to see if the value is legal as the username component of an email address as defined by is_email(). Note that this definition is more restrictive than the one in RFC822. Arguments $value The potential username to test. Returns Returns the untainted username on success, undef on failure. Notes, Exceptions, & Bugs The function does not make any attempt to check whether a username actually exists on your system. It only looks to see that the format is appropriate. AUTHOR
Richard Sonnen <sonnen@richardsonnen.com>. COPYRIGHT
Copyright (c) 2004 Richard Sonnen. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2009-02-01 Email(3pm)
All times are GMT -4. The time now is 02:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy