Email notification on password Expiry ion AD

Hey All
 I wrote a script (probably since Im fresh with powershell its dirty scripting :(  ) to email users when their password is about to expire.
Get-ADUser -filter * -properties PasswordLastSet,EmailAddress,GivenName -SearchBase "OU=Users,DC=domain,DC=test" |foreach {
$PasswordSetDate=$_.PasswordLastSet
$maxPasswordAgeTimeSpan = $null
$maxPasswordAgeTimeSpan = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge
$today=get-date
$ExpiryDate=$passwordSetDate + $maxPasswordAgeTimeSpan
$daysleft=$ExpiryDate-$today
$display=$daysleft.days
$UserName=$_.GivenName
$MyVariable = @"
" Dear $UserName
Your password will expire in $display days.If you are not going to change it you will not be able to connect to Irdeto corporate network.
If you are in Irdeto West HQ building follow the steps below to change your password:
- Press CTRL+ALT+DEL
- On the screen that came choose "Change password"
- Type in your old password and then type the new one (be advised you cannot use one of the previously used passwords)
- After the change is complete you will be prompted with information that passwor has been changed
If you are using VPN:
- Connect your laptop to internet
- On the logon screen to windows connect to CISCO VPN prior to login
- When you will receive successfull connection information login
- At this moment you will be prompted to change your password
With kind Regards
IT Department
*** This is automatically generated email - please do not reply ***
send-mailmessage -to $_.EmailAddress -from [email protected] -Subject "IT Information: Your password will expire in $display days" -body $MyVariable -smtpserver msg001
So basically what it does - it queries domain for users and their selected attributes and then perform action to check when exactly the password will expire.
The thing which I do not know how to put in here would be how to send email only to users which password will expire 7 days or less (greater than 0 of course cause lesss would mean already expired)
If I would use IF would that be sufficient ?
MCSA / MCTS

If should work fine, eg:
Get-ADUser -filter * -properties PasswordLastSet,EmailAddress,GivenName -SearchBase "OU=Users,DC=domain,DC=test" |foreach {
   $PasswordSetDate=$_.PasswordLastSet
   $maxPasswordAgeTimeSpan = $null
   $maxPasswordAgeTimeSpan = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge
   $today=get-date
   $ExpiryDate=$passwordSetDate + $maxPasswordAgeTimeSpan
   $daysleft=$ExpiryDate-$today
   $display=$daysleft.days
   $UserName=$_.GivenName
if ($display -lt 7 -and $display -gt 0){
$MyVariable = @"
"  Dear $UserName
 Your password will expire in $display days.If you are not going to change it you will not be able to connect to Irdeto corporate network.
If you are in Irdeto West HQ building follow the steps below to change your password:
- Press CTRL+ALT+DEL
- On the screen that came choose "Change password"
- Type in your old password and then type the new one (be advised you cannot use one of the previously used passwords)
- After the change is complete you will be prompted with information that passwor has been changed
If you are using VPN:
- Connect your laptop to internet
- On the logon screen to windows connect to CISCO VPN prior to login
- When you will receive successfull connection information login
- At this moment you will be prompted to change your password
With kind Regards
IT Department
*** This is automatically generated email - please do not reply ***
send-mailmessage -to $_.EmailAddress -from [email protected] -Subject "IT Information: Your password will expire in $display days" -body $MyVariable  -smtpserver msg001

Similar Messages

  • Send Email Notification on Password about to Expire

    Hello all!!
    I am trying to send a email notification to users whose password are about to expire. I have configure the "Default Lighthouse Account Policy" so 7 days before account expiration and email should be sent warning about password expiration; unfortunately I have not been able to make work!
    �Have anyone implemented this? �Could anyone please guide me on how to do it?
    Many thanks in advanced,
    Luis

    1) Use "<invoke name='getPasswordExpiry'>" to get the password expiration date of the user
    2) Compare the date with password expiry date(tomorrow's date or two days from today etc)
    3) Send notification to the user if both dates are equal.

  • Notification about password expiry on VPN Client

    Hello everyone.
    Our VPN users are connected to VPN with VPN Client. We're using VPN3000 to terminate VPN and ACS 5.1 to authenticate users from its internal identity store. VPN3000 gets info from ACS via RADIUS.
    Now I want users to be notified about password expiration at their VPN client and be able to change their password.
    I've configured:
    - "RADIUS with expiry" at VPN3000
    - "Disable user account after X days if password was not changed" and "Display reminder after Y days" at ACS
    Now user is blocked when his password is expired after X days and he can't connect. But the reminder is not displayed after Y days and users have not chance to change his own password.
    If I check "Change password on next login" user can change his password in VPN Client.
    Should this feature (password expiry notification) work with ACS5.1 internal identity store and RADIUS?
    I found in ACS5.1 release notes the following:
    - Internal identity store enhancements include support for Password expiry
    but:
    - Expiry of any user (admin or internal) after certain number of days is not supported.
    I'm confused with these two phrases.
    And one more question. What RADIUS attributes say about password expiration and password notification to check them with radlogin?
    Thanks in advance for any help.
      Pavel

    For what it's worth, I've followed that procedure to successfully reset the administrator password on a VPN 3000 concentrator without any loss of the active configuration.

  • Password not being included in Email Notification

    I am trying to include the password for a newly-created user, in the body of an Email Notification being sent out.
    But, the password is not being displayed.
    As we all know, IDM uses the following variable for "*Password*" :
    *<Field name='password.password'/>*
    So, I included the password variable in my Email Template, as follows :
    *<Variable name='mypassword'>*
    *<select>*
    *<ref>user.password.password</ref>*
    *</select>*
    *</Variable>*
    But, when the Email is sent, the password is displayed in the email body as follows :
    Password = "*Lighthouse_Fake_Password*"
    How can I get the password to be displayed in the Email?
    Thanks

    Hi Michael,
    since passwords are stored in encrypted format, you can not directly display them using user.password.password.
    You have to first decrypt them. Use below rule by passing account id to it.
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE Rule PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <!--  MemberObjectGroups="#ID#Top" lastMod="8" lastModifier="Configurator" name="getUserPassword"-->
    <Rule name='getUserPassword' creator='Configurator' createDate='1242288447593' lastModifier='Configurator' lastModDate='1242361940859' lastMod='8' primaryObjectClass='Rule'>
      <RuleArgument name='accid'/>
      <block>
        <setvar name='passString'>
          <invoke name='decryptToString'>
            <get>
              <invoke name='getObject' class='com.waveset.ui.FormUtil'>
                <select>
                  <invoke name='getLighthouseContext'>
                    <ref>WF_CONTEXT</ref>
                  </invoke>
                  <ref>:display.session</ref>
                </select>
                <s>User</s>
                <ref>accid</ref>
              </invoke>
              <s>password</s>
            </get>
          </invoke>
        </setvar>
        <ref>passString</ref>
      </block>
      <MemberObjectGroups>
        <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
      </MemberObjectGroups>
      <Properties>
        <Property name='editorOriginalName' value='getUserPassword'/>
      </Properties>
    </Rule>

  • Create a Recovering/Changing Password web form and send email notification

    Hi all
    I am looking for a web page or application that will allow an user to change his/her database password. I am thinking about those web forms where end users enter the current password and the new password, hit submit and the new password gets activated. Then the web form send an email notification
    The database is an Oracle 10G database.
    Is there any template similar to this one http://www.asp.net/learn/security/tutorial-13-vb.aspx for an Oracle database?
    thanks
    J

    Write a stored procedure that uses native dynamic SQL and just pass in the new password.

  • Email notification for AE password Self-Service

    Hi Guys,
    I have tried to setup AE Password Self-Service and to an extent, its working. However, I do not receive an email notification on the newly changed password.
    I have checked my SMTP settings via SCOT and for sure its working as thats the same system which I'm using the FireFighter (which works and sends out email notification).
    I've checked on the backend system on the "changed documents" and I see that password was indeed changed by the user which I've used in the background job created in AE.
    It seems to me that something is not correctly setup for the communication between AE and the backend system but I cannot figure out which area I should look into (after the above troubleshooting).
    If anyone have any suggestions, I would be much appreciated.
    P.S: I ahve done the below post-installation configuration:
    1) ceated the connectors and tested the connections with success
    2) setup verification fields in the password self service (successful as in the initial screen of AE, I'm about to request a change for a new password and the successful message appears)
    3) SMTP server in the Workflow is also setup
    4) User Data Source is updated (SAP UME)
    5) Backgrund jobs on Email Dispatcher and Email Reminder are created
    Thanks.
    Raymond

    Hi Jagat,
    Where do we need to modify those parameters suggetsed by you because i can't find any option to change these infotypes in AE.
    Kindly suggest, Can you kindly share ADM 955 if you possibly have it with you.
    Thanks and Regards,
    Siddharth Kaul

  • How to trigger email notification when users fail to reset your password in fim 2010 r2.

    Hi,
    how to trigger email notification when users fail to reset  your password in fim 2010 r2
    Regards
    Anil Kumar

    Hi Sylvain,
    I did all thing as you told me.First i created Criteria based Set after this we created a Workflow type Action and Actvities Type Notifcation Email template and finally i called this Workflow in MPR as Set Transition and call Set that i was created below.and
    check Advance View of Set this gives
    <Filter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Dialect="http://schemas.microsoft.com/2006/11/XPathFilterDialect"
    xmlns="/Request[(Creator">http://schemas.xmlsoap.org/ws/2004/09/enumeration">/Request[(Creator = 'b0b36673-d43b-4cfa-a7a2-aff14fd90522') and (RequestStatus = 'Denied or PostProcessingError')]</Filter>
    But this is not working for me so please tell me where i am wrong.
    Regards
    Anil Kumar

  • How to trigger email notification when users fail to give correct answers to reset your password in fim 2010 r2

    Hi,
    How to trigger email notification when users fail to give correct answers to reset your password in fim 2010 r2
    Senario:I want put wrong answering to the Questions that i was during registration if i give wrong answers to the questions then a Email Notification should be trigger to Users.
    Regards
    Anil Kumar

    Hi Sylvain,
    I did all thing as you told me.First i created Criteria based Set after this we created a Workflow type Action and Actvities Type Notifcation Email template and finally i called this Workflow in MPR as Set Transition and call Set that i was created below.and
    check Advance View of Set this gives
    <Filter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Dialect="http://schemas.microsoft.com/2006/11/XPathFilterDialect"
    xmlns="/Request[(Creator">http://schemas.xmlsoap.org/ws/2004/09/enumeration">/Request[(Creator = 'b0b36673-d43b-4cfa-a7a2-aff14fd90522') and (RequestStatus = 'Denied or PostProcessingError')]</Filter>
    But this is not working for me so please tell me where i am wrong.
    Regards
    Anil Kumar

  • Enterprise manager dbconsole 10g  - email notification ? without password?

    hi guys,
    How do i actually setup email notification for dbconsole 10g when i cannot set any password for logging in into the email a/c !?
    i am at Setup > Notificaiton Methods- >
    enter -> smtp.gmail.com:465
    identify sender as -> xxx
    email address -> [email protected]
    but there is no other options to enter password or so?~
    TEST the mail server and i got
    smtp.gmail.com:465: Test failed with message: "Could not connect to SMTP host: smtp.gmail.com:465, port: 25; nested exception is: java.net.ConnectException: Connection timed out: connect"
    Posted in metalink to no avail ? anyone with DBCSONOLE ?

    hi ora_tech,
    thanks for replying.
    i am able to net and ping to gmail.com from the oem machine.
    I am not sure if gmail requires authentication. but it does require ssl.
    however, the oem dbconsole 10.2.0.5 does not support SSL connection.
    q1) do i have to go for grid control then ?
    q2) is it possible to use dbcontrol to handle a remote db ?
    regards,
    Noob

  • I want to know how to setup password expiry notification for outlook 2013 and 2010 in office 365

    On cloud mailbox non federated how set password expiry notification for all users which is created on cloud for accepted domain mail box only configure outlook, 
    any other option on exchange admin center for the same,
    I want to know how to setup Outlook 2013 and 2010  to receive PASSWORD EXPIRY NOTIFICATION without log  in domain,

    Hi
    As per the information and details provided by you, to set up password expiry notification, please follow these steps: -
    I suggest you run Office 365 desktop apps reffering to the steps below: -
    Step1: - Login to Office 365 Portals.
    Step 2: - In the right pane, click
    Downloads under Resources.
    Step 3: - Click Set up under
    Set up and configure your Office desktop apps.
    Moreover, please confirm the password policy by the
    PowerShell cmdlet.
    Step 1: - Install Micrsoft Online Services Module and connect to Office 365.
    Step 2: - Run Connect-Msolservice command.
    Step 3: - Get a password policy by the following PowerShell cmdlet:
                    Get-MsolPasswordPolicy –DomainName yourdomain.com
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G 

  • I have set up an Apple ID for my child who is under 13. I did not get the steps to set up the password for the ID. How do I do that now. The family sharing has sent an email notification to the email by how do I access it?

    I have set up an Apple ID for my child who is under 13. I did not get the steps to set up the password for the ID. How do I do that now. The family sharing has sent an email notification to the email by how do I access it to accept.
    Thanks.

    Hey Lori,
    You can set or change the password for an Apple ID by following the steps in this article -
    Apple ID: Changing your password - Apple Support
    Thanks for using Apple Support Communities.
    Be well,
    Brett L 

  • Email Notification Script is Not Working in Windows Server 2012..

    Dears
    I have Server 2012 and I wants to make new task seclude for email notification, while any user is login to the
    server the server will send notification email about user name and IP address for the user, I have script it is working fine in windows 2008 and it is xml file, but the script is not working in 2012 because in task schedule in windows 2008 there is an option
    called send email but in windows 2012 this option is deprecated, I’m using start program to run the script in PowerShell instead of send email and I configured as an
     end-MailMessage
    -From [email protected]
    -Subject "Email Notification"
    -To [email protected]
    -SmtpServer mail.domainName.com
    But when I use this PowerShell I only receive email notification without any name and IP address, kindly I need
    your support and help, I’m using below script.
    <?xml version="1.0" encoding="UTF-16"?>
    < Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
      <RegistrationInfo>
        <Date>2013-11-27T11:16:32.3962177</Date>
        <Author>Company Name\User Name</Author>
        <Description>RDP Login V1</Description>
      </RegistrationInfo>
      <Triggers>
        <EventTrigger>
          <Enabled>true</Enabled>
          <Subscription>&lt;QueryList&gt;&lt;Query Id="0" Path="Security"&gt;&lt;Select Path="Security"&gt;*[System[(EventID=4624)]] and *[EventData[Data[@Name='LogonType'] and (Data=10)]]&lt;/Select&gt;&lt;/Query&gt;&lt;/QueryList&gt;</Subscription>
          <ValueQueries>
            <Value name="IpAddress">Event/EventData/Data[@Name="IpAddress"]</Value>
            <Value name="TargetUserName">Event/EventData/Data[@Name="TargetUserName"]</Value>
          </ValueQueries>
        </EventTrigger>
      </Triggers>
      <Principals>
        <Principal id="Author">
          <UserId>Company Name\User Name</UserId>
          <LogonType>Password</LogonType>
          <RunLevel>HighestAvailable</RunLevel>
        </Principal>
      </Principals>
      <Settings>
        <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
        <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
        <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
        <AllowHardTerminate>true</AllowHardTerminate>
        <StartWhenAvailable>false</StartWhenAvailable>
        <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
        <IdleSettings>
          <StopOnIdleEnd>true</StopOnIdleEnd>
          <RestartOnIdle>false</RestartOnIdle>
        </IdleSettings>
        <AllowStartOnDemand>true</AllowStartOnDemand>
        <Enabled>true</Enabled>
        <Hidden>false</Hidden>
        <RunOnlyIfIdle>false</RunOnlyIfIdle>
        <WakeToRun>false</WakeToRun>
        <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
        <Priority>7</Priority>
      </Settings>
      <Actions Context="Author">
        <SendEmail>
          <Server>Name of the Server.com</Server>
          <Subject>RDP Login V1</Subject>
          <To>Sender Name</To>
          <From>Any Email.com</From>
          <Body>Login Alert on ServerName IP : $(IpAddress)  User: $(TargetUserName). Please take necessary action</Body>
          <HeaderFields />
        </SendEmail>
      </Actions>
    < /Task>

    Dears
    I have Server 2012 and I wants to make new task seclude for email notification, while any user is login to the
    server the server will send notification email about user name and IP address for the user, I have script it is working fine in windows 2008 and it is xml file, but the script is not working in 2012 because in task schedule in windows 2008 there is an option
    called send email but in windows 2012 this option is deprecated, I’m using start program to run the script in PowerShell instead of send email and I configured as an
     end-MailMessage
    -From [email protected]
    -Subject "Email Notification"
    -To [email protected]
    -SmtpServer mail.domainName.com
    But when I use this PowerShell I only receive email notification without any name and IP address, kindly I need
    your support and help, I’m using below script.
    <?xml version="1.0" encoding="UTF-16"?>
    < Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
      <RegistrationInfo>
        <Date>2013-11-27T11:16:32.3962177</Date>
        <Author>Company Name\User Name</Author>
        <Description>RDP Login V1</Description>
      </RegistrationInfo>
      <Triggers>
        <EventTrigger>
          <Enabled>true</Enabled>
          <Subscription>&lt;QueryList&gt;&lt;Query Id="0" Path="Security"&gt;&lt;Select Path="Security"&gt;*[System[(EventID=4624)]] and *[EventData[Data[@Name='LogonType'] and (Data=10)]]&lt;/Select&gt;&lt;/Query&gt;&lt;/QueryList&gt;</Subscription>
          <ValueQueries>
            <Value name="IpAddress">Event/EventData/Data[@Name="IpAddress"]</Value>
            <Value name="TargetUserName">Event/EventData/Data[@Name="TargetUserName"]</Value>
          </ValueQueries>
        </EventTrigger>
      </Triggers>
      <Principals>
        <Principal id="Author">
          <UserId>Company Name\User Name</UserId>
          <LogonType>Password</LogonType>
          <RunLevel>HighestAvailable</RunLevel>
        </Principal>
      </Principals>
      <Settings>
        <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
        <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
        <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
        <AllowHardTerminate>true</AllowHardTerminate>
        <StartWhenAvailable>false</StartWhenAvailable>
        <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
        <IdleSettings>
          <StopOnIdleEnd>true</StopOnIdleEnd>
          <RestartOnIdle>false</RestartOnIdle>
        </IdleSettings>
        <AllowStartOnDemand>true</AllowStartOnDemand>
        <Enabled>true</Enabled>
        <Hidden>false</Hidden>
        <RunOnlyIfIdle>false</RunOnlyIfIdle>
        <WakeToRun>false</WakeToRun>
        <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
        <Priority>7</Priority>
      </Settings>
      <Actions Context="Author">
        <SendEmail>
          <Server>Name of the Server.com</Server>
          <Subject>RDP Login V1</Subject>
          <To>Sender Name</To>
          <From>Any Email.com</From>
          <Body>Login Alert on ServerName IP : $(IpAddress)  User: $(TargetUserName). Please take necessary action</Body>
          <HeaderFields />
        </SendEmail>
      </Actions>
    < /Task>

  • ICAL Email notification, stuck on communication with email server

    Hi,
    I know there is a ton of of these iCAL issues...
    I was able to get by some initial issues and now am stuck at the email notifications not able to send.
    Sending updates to an external address starts this chain of attempts to contact the mail server to send out the update. It repeats the following two segments repeatedly.
    My cal error log shows:
    2010-09-19 16:54:12-0700 [-] [caldav_task] 2010-09-19 16:54:12-0700 [-] [calendarserver.sidecar.task#debug] Checking for tasks
    2010-09-19 16:54:12-0700 [-] [mailgateway] 2010-09-19 16:54:12-0700 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadFactory#debug] IMAP factory connection lost
    2010-09-19 16:54:12-0700 [-] [mailgateway] 2010-09-19 16:54:12-0700 [IMAP4DownloadProtocol,client] [twistedcaldav.mail.IMAP4DownloadFactory#debug] Scheduling next IMAP4 poll
    My mail access log shows:
    Sep 19 16:48:52 beta dovecot[3149]: pop3-login: Disconnected (no auth attempts): rip=<iCAL Server IP>, lip=<Mail Server IP>
    Sep 19 16:48:52 beta dovecot[3149]: auth(default): new auth connection: pid=20637
    Sep 19 16:53:42 beta dovecot[3149]: imap-login: Disconnected (no auth attempts): rip=<iCAL Server IP>, lip=<Mail Server IP>
    Sep 19 16:53:42 beta dovecot[3149]: auth(default): new auth connection: pid=20639
    The attempts to send notifications do not reach the SMTP.
    My settings are correct in the notification settings (I created in OD and confirmed POP/IMAP/SMTP settings with mail clients), both POP/or IMAP (either don't work at this point) and SMTP are using SSL.
    The keychains com.apple.servermgr_calendar and .invitations both list the same system account with the password populated. The only difference is that .invitations carries the FQDN after the username ([email protected])
    I had seen with the default com.apple.calendarserver, it did more or less the same thing...
    From what I could research, the "(no auth attempts)" seems to suggest the gateway or mail server is not accepting the method or has all methods of authentication closed... However this shouldn't be the case, both mail server and ical have SSL use set in their respective settings...
    *(I understand that caldavd.plist has the option to hold a plain text password... however this is not currently in my caldavd.plist and I do not wish to use it. My mail server is set to only work with MD5 however... Issue perhaps?
    Any advice so I can catch up to where everyone else is stuck at would be pretty cool!

    I attempted to use com.apple.calendarserver again, but it does not authenticate at all on the mail server.
    Both my created and the com.apple. seem to be stuck in only being able to authenticate in PLAIN. I have given in on this and enabled the PLAIN authentication. From here the server log said com.apple.calendarserver had the wrong authentication. I don't see how this can be the case... (the mail server is a OD replica itself)
    So I went into WGM and merely re-pasted in what I had recorded onto the local account. The WGM goes on and on about how this com.apple.calendarserver is only a local account, but I don't see any way to make an OD account (I'm not sure if this is even critical) anyway so I'll leave it be.
    So now both email and normal across-OD invitations function.
    On invitation replies however I get this message in the mail access log:
    deliver(com.apple.calendarserver): Sep 26 02:54:12 Info: msgid=<[email protected]l.outsi dedomain.com>: saved mail to INBOX
    Sep 26 02:54:12 beta push_notify[2709]: error: <iq id='10003' to='[email protected]/push_notify' type='error' from='pubsub.beta.mydomain.com' xmlns='jabber:client'><pubsub xmlns='http://jabber.org/protocol/pubsub'><publish node='/Public/IMAP/beta.mydomain.com/portnum/Mailbox/C8BA4F7E-6E65-4C97-8BCC-BC 3D28FAFE4B'><item><plistfrag xmlns='plist-apple'/></item></publish></pubsub><error type='cancel' code='404'><remote-server-not-found xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/></error></iq>
    Otherwise it seems the SMTP sees the invitation reply and regurgitates back to the com.apple.calendarserver mail... What happens to it from there is a mystery.

  • I don't get email notifications when using find my iphone from another device.

    When my husband uses the app "find my iphone" to locate my where abouts, I no longer get email notifications.  He uses my user name and password.  I believe he dismantled that feature somehow.  Is that possible? 

    I think it time to change your password... or husband

  • Email Notification - ERROR: 530 5.7.1 Client was not authenticated

    Hi People!
    I am receiving the follows error when I run scheduled task. Also, I used Javamail and I have the same problem. The problem: MAIL FROM isn´t authenticating. How can I solve it?
    Other question: How can I configure Email Notification in debug?
    Thanks!
    API Code (Schedule task)
    this.dataProvider = getDataBase();
    tcEmailNotificationUtil emaildef = new tcEmailNotificationUtil(dataProvider);
    emaildef.setSubject("User: " + s2);
    emaildef.setFromAddress(fromaddr);
    emaildef.setBody("OIM has detected a modify in Active Directory. " );
    emaildef.sendEmail(toaddr);
    System Configuration->XL.MailServer=Email Server
    IT Resource 'Email server'
    Name Email Server
    Auth : true
    Server name : exchange server name
    User name : <domain name>\User name
    Password :: Password of that user
    ERROR
    ERROR,11 Jan 2011 18:18:00,375,[XELLERATE.REQUESTS],Class/Method: tcEmailNotificationUtil/sendEmail encounter some problems: 530 5.7.1 Client was not authenticated
    com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.1 Client was not authenticated
    at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
    at javax.mail.Transport.send0(Transport.java:169)
    at javax.mail.Transport.send(Transport.java:98)
    at com.thortech.xl.dataobj.util.tcEmailNotificationUtil.sendEmail(Unknown Source)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processUserChange(ActiveDirectoryReconTask.java:657)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processBatch(ActiveDirectoryReconTask.java:341)
    at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.searchResultPageEnum(Unknown Source)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.performReconciliation(ActiveDirectoryReconTask.java:248)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.execute(ActiveDirectoryReconTask.java:97)
    at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.run(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper$TaskExecutionAction.run(Unknown Source)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.security.Security.runAs(Security.java:41)
    at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown Source)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:477)
    --------------------------------------------------------------------------------

    Thanks Justin,
    for all your help and support.
    there was some settings to be done in the exchange server. and today the system admin co-operated with me and did the changes in the exchange.
    now the messaging is working fine.
    Thanks,
    Rashed

Maybe you are looking for

  • PSE 7 - open 1 file, OK. Open another file, CRASH!

    I'm running PSE 7 on a Windows XP Pro machine with 3GB RAM. I'd had no problems until recently - I just installed about 15 Windows updates (mostly Office and IE security fixes), a Java update and an Adobe Reader update.  After all these updates, I'm

  • HT4053 i want to know how to update my 4s with the ios7

    I need help upgrading my iPhone 4s to ios7.

  • How to upgade to 4.1.1?

    I've got 3.0.5 on my computer and when I do a version check, it says that is the latest. I'm running OSX 10.5. Am I missing something? Thanks in advance!

  • Using my 3.06GHz Intel Core iMac in Asia

    Hi, I just purchased a new 21 inch iMac, but I have decided to move back to Hong Kong. I know they use a different voltage. (The voltage in Hong Kong is 200/220 volts, 50 cycles.) I am not sure if the American model will work fine over there, and als

  • Spark DataGrid scrolling performance problems with debugger

    So, i have a DataGrid using the latest SDK (4.5.1) with 500 rows of data and 14 columns.  I'm not using any custom ItemRenderers at all; the data is just string and number properties of each data object in an ArrayCollection. When I try to scroll ver