Index: apps/app_voicemail.c =================================================================== --- apps/app_voicemail.c (revision 123826) +++ apps/app_voicemail.c (working copy) @@ -5365,7 +5369,11 @@ res = ast_play_and_wait(chan, "vm-messages"); if (!res) res = ast_play_and_wait(chan, "vm-saved"); */ - res = ast_play_and_wait(chan, "vm-msgsaved"); + + /* If forwarded with intro, DON'T PLAY THIS MESSAGE AGAIN! */ + if (ast_strlen_zero(tmptxtfile)) { /* not a forwarded message with intro */ + res = ast_play_and_wait(chan, "vm-msgsaved"); + } } } }