(mh_my_email): New function.
Showing
1 changed file
with
8 additions
and
0 deletions
... | @@ -138,6 +138,14 @@ mh_is_my_name (char *name) | ... | @@ -138,6 +138,14 @@ mh_is_my_name (char *name) |
138 | return strcasecmp (name, my_email) == 0; | 138 | return strcasecmp (name, my_email) == 0; |
139 | } | 139 | } |
140 | 140 | ||
141 | char * | ||
142 | mh_my_email () | ||
143 | { | ||
144 | if (!my_email) | ||
145 | mh_get_my_name (NULL); | ||
146 | return my_email; | ||
147 | } | ||
148 | |||
141 | int | 149 | int |
142 | mh_check_folder (char *pathname, int confirm) | 150 | mh_check_folder (char *pathname, int confirm) |
143 | { | 151 | { | ... | ... |
-
Please register or sign in to post a comment