POA Scheduled Events - not e-mailing

Hi there,
We run Groupwise 7.0.4 here and have set-up new POs to migrate users onto -
as a result I have created several 'scheduled events' on our POA.
I have ensured that in the "results" tab of the 'scheduled action' that
"send results to = Administrator" is selected but although I can see that
each event has run (path-to-po\wpcsout\chk - the log files are there), there
is no e-mail in our Administrator e-mail accoun with the files attached.
I know this may be a stupid question but I cannot find where the event knows
what the Administrator e-mail account is - could that be the problem? The
events on our 'old' 7.0.4 PO's run and e-mail ok.
*Because of a lack of investment, we did not have the funds to upgrade or
migrate away from Groupwise 7 so have purchased new HP G7 servers and are
running our Groupwise environment on VMware on those servers......it's a
long story!
Many thanks in advance
Mike

Many thanks - that did the trick.
"Michael Bell" <[email protected]> wrote in message
news:r4wms.1073$[email protected]..
> On 11/7/2012 4:11 AM, Mike Goodson wrote:
>> Hi Michael
>>
>> Can you expand on your answer a little more for me please? I assume you
>> mean
>> I need to check the owning POA's MTA in the NDS rights tab to ensure the
>> Groupwise Administrator account has the correct permissions - is that
>> correct?
>>
>> Thanks
>> Mike
>>
>>
>> "Michael Bell" <[email protected]> wrote in message
>> news:9_ams.1016$[email protected]..
>>> On 11/6/2012 4:31 AM, Mike Goodson wrote:
>>>> Hi there,
>>>>
>>>> We run Groupwise 7.0.4 here and have set-up new POs to migrate users
>>>> onto -
>>>> as a result I have created several 'scheduled events' on our POA.
>>>>
>>>> I have ensured that in the "results" tab of the 'scheduled action' that
>>>> "send results to = Administrator" is selected but although I can see
>>>> that
>>>> each event has run (path-to-po\wpcsout\chk - the log files are there),
>>>> there
>>>> is no e-mail in our Administrator e-mail accoun with the files
>>>> attached.
>>>>
>>>> I know this may be a stupid question but I cannot find where the event
>>>> knows
>>>> what the Administrator e-mail account is - could that be the problem?
>>>> The
>>>> events on our 'old' 7.0.4 PO's run and e-mail ok.
>>>> *Because of a lack of investment, we did not have the funds to upgrade
>>>> or
>>>> migrate away from Groupwise 7 so have purchased new HP G7 servers and
>>>> are
>>>> running our Groupwise environment on VMware on those servers......it's
>>>> a
>>>> long story!
>>>>
>>>> Many thanks in advance
>>>> Mike
>>>>
>>>>
>>> The administrator is assigned IIRC at the MTA object.
>>
>>
> http://forums.novell.com/novell-prod...nistrator.html
>
>

Similar Messages

  • POA Scheduled event question

    I am running GW7.03HP1 on NetWare 6.5 server. On the POA Scheduled event, I have setup a job that runs every night at 12:00a.m. Action=Analyze/Fix Databases, checked on Structure, Index check and Fix problems boxes.
    Is it true that I should not check on "Contents" box when I am running the Structure check?
    I want to get the user disk space total every night. When I check on "Update user disk space totals" box, it auto check on the "Contents" box.
    On the GUI, I can check on all boxes (I know that would take longer to complete). Any I going to get more trouble if I check boxes on Structure and Contents at the same time.
    Regars
    Andy

    On 6/3/2010 2:06 PM, andyj2009 wrote:
    >
    > I am running GW7.03HP1 on NetWare 6.5 server. On the POA Scheduled
    > event, I have setup a job that runs every night at 12:00a.m.
    > Action=Analyze/Fix Databases, checked on Structure, Index check and Fix
    > problems boxes.
    >
    > Is it true that I should not check on "Contents" box when I am running
    > the Structure check?
    >
    > I want to get the user disk space total every night. When I check on
    > "Update user disk space totals" box, it auto check on the "Contents"
    > box.
    >
    > On the GUI, I can check on all boxes (I know that would take longer to
    > complete). Any I going to get more trouble if I check boxes on Structure
    > and Contents at the same time.
    >
    > Regars
    > Andy
    >
    >
    10 years ago yes. Now, no.

  • Job not getting triggered for Multiple Scheduler Events

    hi,
    I would like a job to be triggered for multiple scheduler events, subscribing to a single event works fine. But, when I set multiple event condition, nothing works.
    My objective is to run a job, whenever job starts or restarts or exceeds max run duration.
    Note : Is it possible to trigger a job, when a job RESTARTS by subscribing to JOB_START ????????
    procedure sniffer_proc(p_message in sys.scheduler$_event_info)
    is
    --Code
    end sniffer_proc
    dbms_scheduler.create_program(program_name => 'PROG',
    program_action => 'sniffer_proc',
    program_type => 'stored_procedure',
    number_of_arguments => 1,
    enabled => false);
    -- Define the meta data on scheduler event to be passed.
    dbms_scheduler.define_metadata_argument('PROG',
    'event_message',1);
    dbms_scheduler.enable('PROG');
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' or tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    I tried this too...
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' and tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    Need help
    Thanks...
    Edited by: user602200 on Dec 28, 2009 3:00 AM
    Edited by: user602200 on Dec 28, 2009 3:03 AM

    Hi,
    Here is complete code which I tested on 10.2.0.4 which shows a second job that runs after a first job starts and also when it has exceeded its max run duration. It doesn't have the condition but just runs on every event raised, but the job only raises the 2 events.
    Hope this helps,
    Ravi.
    -- run a job when another starts and exceeds its max_run_duration
    set pagesize 200
    -- create a user just for this test
    drop user test_user cascade;
    grant connect, create job, create session, resource,
      create table to test_user identified by test_user ;
    connect test_user/test_user
    -- create a table for output
    create table job_output (log_date timestamp with time zone,
            output varchar2(4000));
    -- add an event queue subscriber for this user's messages
    exec dbms_scheduler.add_event_queue_subscriber('myagent')
    -- create the first job and have it raise an event whenever it completes
    -- (succeeds, fails or stops)
    begin
    dbms_scheduler.create_job
       ( 'first_job', job_action =>
         'insert into job_output values(systimestamp, ''first job runs'');'||
         'commit; dbms_lock.sleep(70);',
        job_type => 'plsql_block',
        enabled => false, repeat_interval=>'freq=secondly;interval=90' ) ;
    dbms_scheduler.set_attribute ( 'first_job' , 'max_runs' , 2);
    dbms_scheduler.set_attribute
        ( 'first_job' , 'raise_events' , dbms_scheduler.job_started);
    dbms_scheduler.set_attribute ( 'first_job' , 'max_run_duration' ,
        interval '60' second);
    end;
    -- create a simple second job that runs when the first starts and after
    -- it has exceeded its max_run_duration
    begin
      dbms_scheduler.create_job('second_job',
                                job_type=>'plsql_block',
                                job_action=>
        'insert into job_output values(systimestamp, ''second job runs'');',
                                event_condition =>
       'tab.user_data.object_name = ''FIRST_JOB''',
                                queue_spec =>'sys.scheduler$_event_queue,myagent',
                                enabled=>true);
    end;
    -- this allows multiple simultaneous runs of the second job on 11g and up
    begin
      $IF DBMS_DB_VERSION.VER_LE_10 $THEN
        null;
      $ELSE
        dbms_scheduler.set_attribute('second_job', 'parallel_instances',true);
      $END
    end;
    -- enable the first job so it starts running
    exec dbms_scheduler.enable('first_job')
    -- wait until the first job has run twice
    exec dbms_lock.sleep(180)
    select * from job_output;

  • E-mail links from iCal event - not working in Yosemite

    My workflow has always depended on dragging e-mails from Mail to iCal
    This generates link in ical event "Show in mail" - giving me option to find the e-mail with one click from iCal
    Since Yosemite install the links go wrong!
    I can generate several events from several e-mails and all links point me to the same random e-mail. I haven't yet found clear pattern in this randomness, but it seems to link to the first mail-to-iCal created after sleep/restart, but not always...
    Anybody experiencing similar bug?
    Tried "mailbox" > "rebuid" with no result.
    Any more ideas?
    I'm on MB Pro 2009 using POP-accounts for mail but the random-link behavior is just same when dragging mails from my icloud account.

    Well it's good news i'm not alone in this - frustrating indeed!
    Searching for solutions with no result so far.
    I've been migrating my user library from one opsys to other since Leopard i guess, so probably i should just do a clean install one day - this MUST help
    My workaround after a week of being just unable to manage my incoming information was to use Notes
    Dragging emails to notes content still works, and in a way i kind of like it - u can keep a single note with several links to different emails etc. At least for now it seems like a decent substitute. Organizing notes to folders is helpful too, but i guess you can't organize folders in iOS which is really bad.
    So - still hoping to move back to my iCal

  • My schedule does not receive invitations to events

    My schedule does not receive invitations to events, i Have a icloud Account, my invites arrive to my friends, but theyr never arrive, why?

    Hi matthuynh,
    Welcome to the Apple Support Communities!
    I understand you are not receiving iMessages when you are not connected to the internet. You will need some sort of data connection to receive an iMessage, Wi-Fi or cellular data. If you are connected to data and are still not receiving iMessages please you the information in the following article to isolate and resolve the situation.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Please let me know if I can be of further assistance.
    Have a great day,
    -Joe

  • POA HTTP Monitor not loading after upgrade

    I'm working on a migration/upgrade from gw8 to gw2014, all of the agents show started in the admin console but the http monitor screen will not load. I initially had a bad path to a certificate and have removed the certificate and it's path, turned off ssl and restarted the POA.
    I'm still getting this though, when I try to access the POA (non ssl)
    GroupWise 2014 POA - PONAME
    Status | Configuration | Environment | Log Files | Scheduled Events | MTP Status | Help
    Web Console Access has been disabled due to error in loading SSL Certificate: [8209]
    Any assistance is appreciated.
    Dan

    Hi Laura,
    Yes I have checked the poa startup file and it looks fine. It was a fresh install of GW2014 so there is only one poa file and it's located in the post office directory as well. Interestingly, it's the monitor screen of the domain that shows this wrong information when I click on 'Links' and then the PO link listed there. When I look at monitor in the PO, any of the path data in there shows correct. So it makes me believe the problem is on info stored in the domain - but maybe I'm wrong. Also, mail goes out just fine, but it fails coming in because the domain drops it in the old location and the post office tries to pick it up in the new location.
    Originally Posted by laurabuckley
    Hi Dan,
    Just a quick suggestion... Have you checked your POA startup file to see if it has the wrong path set in there? Look at the top of the file for the "home" path.
    Let us know how it goes.
    Cheers,

  • Deleting a Scheduled Event in iCal ?

    Okay, I scheduled a few things and, alas, life being what it is, I had to make some changes. However, I found I was unable to delete the initialed scheduled event--I finally resorted to just "cutting" it. Is this the only way to delete an event?
    <Edited by Moderator>

    Make sure you select/highlight the actual item, not just the day or time, and then hit delete.
    Cheers
    Rod
    Message was edited by: Rod Hagen

  • Calendar events not showing in notification centre

    Was hoping there was someone out there that may have experienced the same problem, and has a solution.
    I have noticed this morning that after upgrading to OS X Yosemite, I do not have my calendar events showing in notification centre. I cannot be sure that this is a result of upgrading to Yosemite.
    Problem #1: In the today tab on notifications, an event did not show up for today, in both notification centre on my Mac, and on my iPhone. This seems to have been solved by changing the event from an all day event, to set hours. Is there a way that all-day events can be shown in notification centre?
    Problem #2: In the today tab on notifications, down the very bottom, my Mac says there are no scheduled events for tomorrow. On the same tab on my iPhone, it says "there are 2 all-day events scheduled". Similarly, the event is listed in the notifications tab (not the today tab), in notifications centre on my phone, until you press on the event and it flicks you through to your calendar. Is anyone aware of why these events would not be showing up on my mac's notification centre?? I am assuming it has nothing to do with changing it from an all-day event, because it shows up on one device, but not another.
    Calendar is switched on for notification centre on iPhone and mac.
    Any help would be greatly appreciated!
    Brendo

    I found when I created an event, I needed to add an alert to it. Then it started showing up.
    Notification Center Basics
    Notification Center Preferences
    Notification Center Setup

  • Cut off Event Notes

    I noticed that on my iPhone, the notes included with events are cut off for meetings set up by others, and as a result a lot of times critical information, like conference call login information, is cut off with it (my iPad seems to show more, if not all, notes)
    For events I set up, there appears to be an "All Notes" button that then shows everything.  Events set up by someone else do not have that.  Is this new in iOS5?  I didn't notice it as an issue before. 
    Either way, It would be nice to have access to the notes for all events, not that the ones created by me.  Am I missing something?

    Keynote print layout is a bit of a mess, and is well commented on by users, it prints differently than previous versions, eg  in handouts the slide image is much smaller than previously, in grid, the slides are off the printable area on the left.
    We are hoping this is fixed in the round of scheduled updates.

  • JES Messaging Server 6.0 will not accept mail alternate address

    JES Messaging Server 6.0 will not accept mail alternate address
    I have installed the Sun ONE Messaging server 6.0 as part of an evaluation of the Java Enterprise System. This was installed along with Directory Server 5.2 and Identity Server 6.1. During the installation I created a top level organization (o=internet) knowing that I would want to create multiple email domains within it and a default domain. After the installation was complete I used the User Management Utility (/opt/SUNWcomm/bin/commadmin) to create some users within the default domain. I provided each user with a primary email address ([email protected]) and an alternate email address (mailAleternateAddress = [email protected]).
    In testing the system I find that the Messaging Server will not accept messages sent to the alternate email address whether sent from the same server (via Messenger Express) or from an external server. It returns the error message: 550 5.1.1 unknown or illegal alias.
    In attempting to trouble shoot this problem I have watched the Directory Server's access log when such an email is sent. It shows a query using [email protected] even though the email message was sent to [email protected] In any event the DS finds the user, but the Messaging server rejects the message.
    [date_time] conn=120 op=11 msgId=12 - SRCH base="o=domain.com,o=internet" scope=2 filter="(mail=[email protected])" attrs="preferredLanguage mail mailEq
    uivalentAddress"
    [date_time] conn=120 op=11 msgId=12 - RESULT err=0 tag=101 nentries=1 etime=0
    [date_time] conn=120 op=12 msgId=13 - SRCH base="o=internet" scope=2 filter="(&(objectClass=sunManagedOrganization)(|(associatedDomain=host.domain.com)(sunPreferredDomain=host.domain.com)))" attrs=ALL
    [date_time] conn=120 op=12 msgId=13 - RESULT err=0 tag=101 nentries=0 etime=0
    Any suggestions to eliminate this problem would be appreciated.

    Both the primary and alternate email addresses are the same as the domain of the user.
    Here is what I want to do. Email is sent to a primary email server (not this machine). Mail for some users stays on that server to be read and mail for other users is moved to a geographically separate server (the one in question) by specifying that the mail be forwarded to the specific host: [email protected] > [email protected]
    On this second server I want to host two (or more) independent email domains. I do not want one of the domains to be a subdomain of the other. So during the installation I used o=internet as the root suffix and then used a different default domain (representing one of the registered internet domains). After installation I used the commadmin tool to create a second domain so now I have what looks something like this:
    o=internet,
    __ou=People
    __ou=Groups
    __o=domain1
    ____ou=People
    ____ou=Groups
    __o=domain2
    ____ou=People
    ____ou=Groups
    I then created some users under domain1 and some under domain2 so one user's dn is:
    uid=user, ou=people, o= domain1.com, o=internet.
    Mail sent locally to user@ domain1.com gets delivered correctly, but sending to [email protected] does not.
    host2.domain1.com is the fully qualified domain name of the server.

  • Call GET_SEARCH_REASULT service from scheduler event filter Iin UCM

    Hi,
    In our application, the mail should get sent to the content author on content revised date. For that, we have written a scheduler event filter component which will get invoked after every five minutes. In filter class I want to call GET_SEARCH_REASULTS service to get the list of contents and its authors to send mail.
    Can anybody please tell me how to call GET_SEARCH_REASULTS service from scheduler event filter?
    Thanks in advance.

    Hi Nitin
    Why cant you try writing custom query and custom service ?
    Please refer idoc script reference guide for getting the parametrs to be passed when using Get_search_results.

  • System preference pane will not load mail contacts calendar

    I get a msg saying that prefence pane will not load mail contacts and calendars.  Does anyone know why?  How I can fix that?   Is that why I can't add new events to ical?
    Thanks!

    aporzec,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://www.novell.com/support and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • Scheduler - Event Based Jobs

    Hi,
    I've been trying to create an event based job dependent on multiple jobs. I tried queuing, but it seems like it can only hand one Job at a time. Also, chains were recommended to me, but I want the Job to run on the dependence on the Job that ran on specific program at the specific time. I currently know that chains can only handle, programs, other chains and/or events.
    In my mind chains wouldn't work, because If I wanted to run Job3 dependent on the outcome of Job1 running Program1 and Job2 running Program2, chains wouldn't be able to accomdate that. For it to happen in chains I would have to attach Program1 and Program2 to the new chain Job and that is not exactly what I would want.
    Can anyone help/clarify this situation for me. Thank you.
    Tony

    Hi Tony,
    So the requirement is to run a job after 2 prior jobs have completed.
    There are two ways I can think of to do this, both using events. In both cases you need to set job A and job B to raise events on completion (succeeded, failed or stopped) and setup an agent for the Scheduler event queue in the schema in which you are working
    dbms_scheduler.add_event_queue_subscriber('myagent')
    In order to get Job C to start after jobs A and B have completed there are 2 options.
    1) Let job C point to a chain and start running whenever job A has completed. The chain will have 2 steps, one event step waiting on B and one that runs your task C. An event step does nothing but wait for a particular event and complete successfully when the event is received. The second step will run when the event step waiting on job B has completed.
    So your chain would look something like
    begin
    dbms_scheduler.create_chain('chain1');
    dbms_scheduler.define_chain_event_step('chain1','stepB',
    'tab.user_data.object_name = ''JOB_B'' and
    tab.user_data.event_type IN(''JOB_SUCCEEDED'',''JOB_FAILED'',''JOB_STOPPED''',
    'sys.scheduler$_event_queue,myagent');
    dbms_scheduler.define_chain_step('chain1','stepC','finalTaskProg');
    dbms_scheduler.define_chain_rule('chain1','true','start stepB');
    dbms_scheduler.define_chain_rule('chain1', 'stepB completed', 'start stepC');
    dbms_scheduler.define_chain_rule('chain1', 'stepC completed', 'end');
    dbms_scheduler.enable('chain1');
    end;
    And your job would point to the chain and run whenever job_A completes (similar condition and queue_spec). It would keep waiting till job_B runs and then the final task would run and it would complete.
    2) The second way is to require job_A to insert a row into a table somewhere. Rule conditions can access table data so you could have job_C have an event condition which checks for a completion event for job_B and checks the table to see whether job_A has completed. Then the code you run should then remove the row in the table
    e.g.
    queue_spec=>'sys.scheduler$_event_queue,myagent'
    event_condition=>'tab.user_data.object_name = ''JOB_B'' and
    tab.user_data.event_type IN(''JOB_SUCCEEDED'',''JOB_FAILED'',''JOB_STOPPED''' and
    (select count(*) from mytab where col='job_A')>0'
    Then when running C do - delete from mytab where col='job_a';
    Both of these assume that job_A always completes before job_B but both of these will then run job_C after job_B completes. Modifying either of these so that either job A or B runs first is also possible by having another job that waits on A rather than B.
    Hope this helps, if you have any more questions, let me know.
    -Ravi

  • Scheduled Events

    Hi All. Firstly forgive me, but where is the forum search feature? If I enter criteria in the Search field next to the Support button, it seems to search the entire Apple site, not the forum.
    Now, to the question at hand. Since Day 1 I have had scheduled event dots beneath every single day of every month in my calendar. Why is this and how do I go about removing them? I do not have scheduled events every day in outlook, so why would they appear on the phone?
    TAI

    I finally understood how to execute java code every 5 minutes and 2 hours! But I still doesn´t know how to launch the "hello world" message in Content Server. I know how to show it by console with System.out.print("HELLO WORLD! \n"); but I would like to show it in the web browser in the content server.
    Thankss

  • Scheduled Job not running properly

    Hello Friends,
    I have a webservice that sends the mail to 24 or above users at a single go . This functionality I need to schedule . So I designed the job for same purpose , now the problem is that the webservice is running absolutely fine but once the job is scheduled and run , the mails are not send . I tried to send a single mail also with the help of scheduler API and was succefull in doing that but If the webservice needs to send more than one mail , this does not happen through the Scheduler API
    I also had encountered problem while runnign the webservice earlier. I was getting the Read timed out error during execution of webservice For its solution I increased the time out period of the webservice  mannually ( from the left panel , the time out period can be increased in WebService Navigator ) and the problem got solved , this you cant do once you have scheduled the job so one of the reson may this time out expiration also .
    So can any one help me out with the way to increase the time out period for the webservice not mannually rather in a more stabel and permanent way
    Edited by: Smriti_techno on May 5, 2009 8:50 AM

    hi
    refer this link for example of scheduler api
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90a95132-8785-2b10-bda5-90d82a76431e
    let me know am i correct or not
    bvr

Maybe you are looking for

  • Sort in Cross-Tab report

    I have a cross-tab report that lists dates as headers and employees as rows. The data at every cell shows the qty (it is like timesheet report). The totals are shown for every row and column. The report layout looks something like this: ----------- <

  • Recovery in progress may need access to files error

    Dear all, I was shown the below error when trying to drop a tablespace TBS1. DROP TABLESPACE TBS1 INCLUDING CONTENTS; DROP TABLESPACE TBS1 INCLUDING CONTENTS ERROR at line 1: ORA-01156: recovery in progress may need access to files i donot have any b

  • Filtered Photos not showing in Computer

    I have updated the iOS 7 on 18th sept, since i have the problem.When im using photo filters its showing the filtered Photos on the phone but after  i connect my iPhone 5 to PC i cannot find that photos, insted i can see those photos as Normal Photos.

  • Sort one step behind help

    Merry <insert faith here> to all tonight. I'm doing a sort by dropdown which is bound to a string object in the session bean. In page1 I do a faultsRowSet.setCommand(getSessionBean1().getChoice()) On change with the dropdown. The trouble is there is

  • Caching in PI

    Hi, I am very new to PI. As I know so far that caching is always used for performance reasons. This means that system will still run but performance will be slow. Does that caching means the same in PI/XI or it has some different concept because some