diff --git a/CHANGES b/CHANGES
index ea0338f5ce567aa8a6ea1e06c09de8ce0801f1f7..c46d4c7e4ef5f19390775dc8c1570e8ffb69306e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -165,6 +165,8 @@ Applications
  * Two new applications are provided for declining counting phrases in multiple
    languages.  See the application notes for SayCountedNoun and SayCountedAdj for
    more information.
+ * Voicemail now runs the externnotify script when pollmailboxes is activated and
+   notices a change.
 
 Dialplan Functions
 ------------------
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index ae6cba171255e1f3f8f6145700ce3fa0ea14fa4d..892c865a9985d4066379967da09f0cd13a8e7c90 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -11022,6 +11022,7 @@ static void poll_subscribed_mailbox(struct mwi_sub *mwi_sub)
 		mwi_sub->old_new = new;
 		mwi_sub->old_old = old;
 		queue_mwi_event(mwi_sub->mailbox, urgent, new, old);
+		run_externnotify(NULL, mwi_sub->mailbox, NULL);
 	}
 }