diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 40ffb536d85a6b15181e659e8a25e7f6d7eb6bb3..1102fcd9382aa4eadab79f8a786f780dd4cdc576 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -3334,7 +3334,7 @@ static char *get_header_by_tag(char *header, char *tag, char *buf, size_t len)
 	if (taglen < 1)
 		return NULL;
 
-	if (!(start = strstr(header, tag)))
+	if (!(start = strcasestr(header, tag)))
 		return NULL;
 
 	/* Since we can be called multiple times we should clear our buffer */