- 论坛徽章:
- 0
|
关于vpopmail的domain disk quota限制
原帖由 "nsinit" 发表:
'\0';
>; totalquota += atoi(newquota);
>; free(newquota);
>; }
>;
>; // 配置文件中domain disk quota以Mbytes计数
>; if ((totalquota + curquota)/..........
不好意思,问一个很菜的问题。
diff 两个文件显示的结果的代码(如:481a486,521 )是什么意思?能不能详细点?不胜感激 !
diff vpopmail.h vpopmail.h.mod
diff vpopmail.c vpopmail.c.mod
对vpopmail.h的修改:
109c109
< int vadduser( char *, char *, char *, char *, int);
---
>; int vadduser( char *, char *, char *, char *, int, char*);
对vpopmail.c的修改:
437c437
< int apop )
---
>; int apop , char* userquota)
445a446,449
>; char* newquota = NULL;
>; struct vqpasswd* mypw = NULL;
>; int curquota = 0, totalquota = 0;
>; int first = 1, len = 0;
481a486,521
>; // 如果该域指定了domain disk quota, 才对增加用户时的用户quota做限制.
>; if (limits.diskquota != 0)
>; {
>; if (userquota != NULL)
>; { // 即使是postmaster也不能NOQUOTA
>; if (strcmp(userquota, "NOQUOTA" == 0)
>; {
>; printf("can't set NOQUOTA, domain disk quota: %dM\n", limits.diskquota);
>; return(VA_NULL_POINTER);
>; } else {
>; curquota = atoi(userquota);
>; }
>; }
>; // 获取域的当前所有用户的quota之和(以字节计数)
>; while ((mypw = vauth_getall(domain, first, 1)) != NULL)
>; {
>; first = 0;
>; len = strlen(mypw->;pw_shell);
>; newquota = (char *)malloc(len+1);
>; if (!newquota)
>; return(VA_NULL_POINTER);
>; memcpy(newquota, mypw->;pw_shell, len);
>; newquota[len-1] = '\0';
>; totalquota += atoi(newquota);
>; free(newquota);
>; }
>;
>; // 配置文件中domain disk quota以Mbytes计数
>; if ((totalquota + curquota)/1024/1024 >; limits.diskquota)
>; {
>; printf("over domain disk quota: %dM\n", limits.diskquota);
>; return(VA_NULL_POINTER);
>; }
>; }
>;
>;
1562a1603
>; printf("quota: %s; formattedquota: %s\n", quota, formattedquota); |
|