1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,17 @@ |
1 |
+/* |
|
2 |
+ * kakumei_email.c |
|
3 |
+ * |
|
4 |
+ * E-mail management |
|
5 |
+ * |
|
6 |
+ * Header file. |
|
7 |
+ * |
|
8 |
+ * Author: Dario Rodriguez dario@softhome.net |
|
9 |
+ * This program is licensed under the terms of the Affero GPL v1+ |
|
10 |
+ */ |
|
11 |
+ |
|
12 |
+#include "kakumei.h" |
|
13 |
+ |
|
14 |
+int email_set(kakumei *ka, char *user, char *email); |
|
15 |
+int email_get(kakumei *ka, char *user, char *email,int sizeemail); |
|
16 |
+int email_notify(kakumei *ka, char *fromuser, int numpost); |
|
17 |
+ |