** Can this be changed so this person doesn't get the email notification when they add their own events. **
At the top of the after_add_event.pl file, there is a line which controls when the notice is not sent:
if (!($User->hasPermission("","APPROVE") && $User->hasPermission($calendar,"APPROVE_OWN_EVENTS"))) {
You can try changing it to:
if (!($User->hasPermission("","APPROVE") | | $User->hasPermission($calendar,"APPROVE_OWN_EVENTS"))) {
That way no pending notification should sent sent if a user has either permissions. It is untested though.
BTW. The | | in the above code should not have a space between them. That is added by this forum software.
** The Notify message shows Apache as the Sender. Can this be changed to show a Name or Calendar Name? **
You'll have to check with your host to see how their sendmail program is set up, sorry.
Dan O.
------------------