Is there a log I can check for internal messages not beingrecieved?

We are using sendmail in an internal VB script. My boss is not getting emails sent to her from this script.
Is there a log I can view (similar to the GWIA log for external messages) that will tell me if the Groupwise system even tried to process it?
Because I am using a script and not the client, I cannot check the sent status. (I think...)

On 6/23/2011 4:46 AM, Jason wrote:
> We are using sendmail in an internal VB script. My boss is not getting
> emails sent to her from this script.
> Is there a log I can view (similar to the GWIA log for external
> messages) that will tell me if the Groupwise system even tried to
> process it?
> Because I am using a script and not the client, I cannot check the sent
> status. (I think...)
First of all you'd be better learning pure object api rather than
shelling out.
Second of all, were you using object api it would generate sent item. I
think sendmail avoids this.
Third of all, the only other way to trace is have the POA on verbose
logging and see what happens. Obviously easier to interpret off hours.

Similar Messages

  • Is there some log I can check on my A2107 to find out why it restarts?

    My a2107 tablet shutdown and restarts.
    Is there some way to find out why? 
    Some log I can look at?

    Hi fowvaydriver-
    If the power is suddenly removed there is no time to write a log entry.
    Can you not get what you need from the boot times? If it booted and wasn't supposed to have been shut down that would be a clue.
    Is your UPS functioning properly?
    Luck-
    -DP

  • Is there any tools can check for existed database ?

    hi all, is there any tools that can check for that existed database after inserted a database to Ms access??

    Then you'll open a connection and then do a Select from table to retrieve information. (and close afterwards)
    /Y 
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • After upgrade to iOS 6, one of my apps won't load. It seems to, then just ends. Is there an error log I can check?

    After upgrade to iOS 6, one of my apps won't load. It seems to, then just ends. Is there an error log I can check?

    so your starting it up and its just crashing right away, yes? can you tell me what app it acutally is? as iOS6 is so new my thought would be that its probably incompatable with it at this time, im having trouble with my networks app that just will not let me log in at all!
    id suggest going to the page of the app on the app store and look to see if it says if its compatable or not? as for a error log its in usage data, which is in settings > general > about, and i think its near the bottom.

  • HT5654 im trying to update my itunes and when i click on help there is no option to check for updates?????? please help

    im trying to update my itunes and when i click on help there is no option to check for updates?????? please help

    Hello davetonge,
    The latest version of iTunes can also be downloaded and installed from the link below.
    If you do not have iTunes installed on your computer, you can download it here.
    iTunes: How to install the latest version
    http://support.apple.com/kb/HT5654
    Cheers,
    Allen

  • I LOST MY IPAD. IS THERE ANY WAY I CAN CHECK WHEN IT WAS LAT "ONLINE"?

    I LOST MY IPAD. IS THERE ANY WAY I CAN CHECK WHEN IT WAS LAT "ONLINE"?

    If the iPad was running iOS 7, the thief/finder will not ever be able to use it.
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/HT5668
    How to Find a Missing iPad with FindMyiPad
    http://www.dummies.com/how-to/content/how-to-find-a-missing-ipad-with-findmyipad .html
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    iCloud: Lost Mode - Lock and Trace
    http://support.apple.com/kb/PH2700
    iCloud: Remotely Erase your device
    http://support.apple.com/kb/PH2701
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    General steps to follow for a Stolen iPad
    http://stolen-ipad.com/
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st Len
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
    Check the serial number (located on back/bottom) in this lost/stolen iPad database. However, most owners are not aware of this database and don’t enter the serial number.
    Stolen iPad Database
    http://www.stolenlostfound.org/online-stolen-ipad-database
    Also do a search, using the serial number, on your local Craig’s List. Some users list the serial number of a stolen iPad to thwart the sale of a stolen device.
     Cheers, Tom

  • My MacBook Pro is suddenly slower...is there an easy way to check for viruses?

    My MacBook Pro is suddenly slower...is there an easy way to check for viruses?

    OpsMgr have methods which can get all host classes. Here my own function which can solve your issue:
    function Get-SCOMClassProperty {
    param(
    [Microsoft.EnterpriseManagement.Configuration.ManagementPackClass]
    [Parameter(Mandatory = $true)]
    $ManagementClass,
    [Switch]
    [Parameter(Mandatory = $false)]
    $KeyOnly
    function Get-SCOMClassKeyProperty {
    param(
    $ManagementClass
    $ManagementClass.PropertyCollection | ? {$_.Key}
    If ($ManagementClass.Hosted) {
    Get-SCOMClassKeyProperty -ManagementClass $ManagementClass.FindHostClass()
    If ($ManagementClass.Base) {
    Get-SCOMClassKeyProperty -ManagementClass (Get-SCOMClass $ManagementClass.Base.Id)
    function Get-SCOMClassAllProperty {
    param(
    $ManagementClass
    $ManagementClass.PropertyCollection
    If ($ManagementClass.Base) {
    Get-SCOMClassAllProperty -ManagementClass (Get-SCOMClass $ManagementClass.Base.Id)
    $ManagementClassProperty = Get-SCOMClassKeyProperty -ManagementClass $ManagementClass
    If (!$KeyOnly) {
    $ManagementClassProperty += Get-SCOMClassAllProperty -ManagementClass $ManagementClass
    $ManagementClassProperty | Select-Object -Unique
    If you need to do it in SCOM 2007 R2 then you can try my scripts from this examples http://systemcenter4all.wordpress.com/2013/05/15/scom-monitoringclass-functions/. Last should work in 2007 R2 and in 2012. Example in thread will work only in 2012.
    For example just run command:
    New-SCOMManagementGroupConnection
    $ManagementClassName = "Microsoft.SQLServer.Database"
    $ManagementClass = Get-SCOMClass -Name $ManagementClassName
    Get-SCOMClassProperty -ManagementClass $ManagementClass -KeyOnly | select Name
    Vladimir Zelenov | http://systemcenter4all.wordpress.com

  • How can i check for posted but not yet commited changes in a form

    Dears
    I make changes programmatically in a form then i post it using (Post built in).
    If the user exits the form, i make check for any changes in the form to commit it using the system variable :system.form_status
    Unfortunately the value of this system variable is 'Query' not 'Changed' because of using the post built in.
    Is ther another system variable ( or any another way ) that check for posted but not yet commited changes in the form ?
    Thanks a lot
    Mostafa Abolaynain

    I had faced similar situation. Using of package variable which identifies, what is the user's latest action.
    This is just a workaround.
    Capture what the user has performed into a variable say, PKG_VAR.ACTION,
    This will be assigned values like List L, and Create C, Update U and Saved S.
    If commit is executed,assing the status S to the variable.
    So while closing,
    IF :system.form_status = 'CHANGED' or PKG_VAR.ACTION in ('C','U') THEN     
    -- validate the data, n perform commit.
    else
    -- just close the form.
    end if;
    Regards
    Deepz : )

  • I am trying to restore a backup onto my iphone from itunes but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup?

    I am trying to restore a backup onto my iphone from itunes on a pc windows 8 but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup? Any help is very appreciated

    Try entering the password on your iPhone

  • Is there an app i can download for a ipod touch 4 that uses your camera instead of your screen for a flashlight

    is there an app i can download for an ipod touch 4 that uses your camera instead of your screen

    Since the iPod touch doesn't have an LCDflash like the iPhone any app that would turn on the LCD flash on the iPhone into a "flashlight" wouldn't work with the iPod.

  • An you tell me how to add an advanced action to the TEB so you can check for multiple lines of input

    an you tell me how to add an advanced action to the TEB so you can check for multiple lines of input? How do you add the advanced action?

    Can you elaborate your requirement?
    If you want to have a text wrapped around and enable a scroller for the same, you can achieve it by TEB properties and check the scroll bar option,
    Is this what you are looking to achieve?
    Thanks,
    Anjaneai

  • HT1918 I need to change countries on my account but I can't because I have 98 cents left on my account and there is nothing I can buy for 98 cents. What do I do?

    I need to change countries on my account but I can't because I have 98 cents left on my account and there is nothing I can buy for 98 cents. What do I do?

    1) Buy something and charge the balance to a credit card.
    or
    2) Contact Apple and ask them to remove the balance.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html

  • HT4623 When I go into settings and general the option to download ios7 is not there when it then says "checking for updates" and I recieve an error

    When I go into settings and general the option to download ios7 is not there when it then says "checking for updates" and I recieve an error

    What version of iOS is the device currently running?
    In order to update over the air on the device, it must be running iOS5 or higher.

  • Is there a manual I can PRINT for the Airport Utility Software Version 5.5.3 for Windows?

    Is there a manual I can print for the Airport Utility Software Version 5.5.3 for Windows?
    If there is, I can't seem to find it anywhere (in the Software, by using Google, etc).

    I dont' believe there were manuals out there for different versions of the utility. That would be quite a few different manuals.
    There are different manuals for the different base stations however...

  • I have disable my Iphone5 I would like to switch it on but i dont want to recover it an lose my photos, is there a way i can check when last it was backed up

    I have disable my Iphone5 I would like to switch it on but i dont want to recover it an lose my photos, is there a way i can check when last it was backed up

    You will find out when you restore it. You don't have a choice but to restore at this point. You will lose any that were not already backed up. You can't back it up after it's been disabled.

Maybe you are looking for

  • My Skype Won't Sign In?

    My skype is stuck on the sign in screen everytime I open Skype, can anyone help? Running on Windows Vista.

  • IP Address Added But still does not allow access

    I have a laptop that I take around Australia. When I'm in a hotel I link to the interest via my mobile phone using its hotspot feature. This allows me to gain access to the internet with no problem. When I go to the allowed ip addresses section of Az

  • Why do I see two iCloud - Notes in my iMac Notes application?

    When I start my Notes application on my iMac 27, I am now seeing the following in the left hand column for the Notes window: All Notes iCloud   Notes iCloud   Notes If I click on the first "Notes" under the first iCloud item, nothing appears. If I cl

  • An error has occured while trying to save the application. Please try again.

    Hi, When i try to add application on my primary CRS node i am getting below error An error has occured while trying to save the application. Please try again. This also happens if i edited another existing scripts CCX version is 8.0 thanks

  • Policy Server Document displaying no content inside Adobe Acrobat 7.0

    When I apply a policy to a document and login in I am able to view the document the first time. However when I try to re-open the document, it will open in Adobe Acrobat Professional 7.0 but open up with a grey background with no content. We are curr