Skip to content

Commit

Permalink
updated indimail-mta
Browse files Browse the repository at this point in the history
01. use matchregex.h from /usr/include/qmail
02. svctool: fixed create_smtp argument check
03. svctool: added /etc/clamd.d to backup.conf
04. mail_acl.c, qregex.c, smtpd.c, uacl.c: use matchregex.h from /usr/include/qmail
05. qmail-queue.c: added feature to negate regexp match
  • Loading branch information
mbhangui committed Oct 24, 2023
1 parent d54d0f3 commit 853f026
Show file tree
Hide file tree
Showing 8 changed files with 185 additions and 154 deletions.
12 changes: 12 additions & 0 deletions indimail-mta-x/doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
* XXX XXX XX XXXX XX:XX:XX +0000 <@email@> @version@-@release@
Release 3.0.6-1.1 Start 25/10/2023 End XX/XX/XXXX
======= Release Highlights ================================================
===========================================================================
- 24/10/2023
01. use matchregex.h from /usr/include/qmail
02. svctool: fixed create_smtp argument check
03. svctool: added /etc/clamd.d to backup.conf
04. mail_acl.c, qregex.c, smtpd.c, uacl.c: use matchregex.h from
/usr/include/qmail
05. qmail-queue.c: added feature to negate regexp match

* Tue Oct 17 2023 18:34:04 +0000 Manvendra Bhangui <indimail-mta@indimail.org> 3.0.5-1.1%{?dist}
Release 3.0.5-1.1 Start 11/09/2023 End 17/10/2023
======= Release Highlights ================================================
Expand Down
7 changes: 5 additions & 2 deletions indimail-mta-x/mail_acl.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/*
* $Log: mail_acl.c,v $
* Revision 1.7 2023-10-24 20:06:40+05:30 Cprogrammer
* use matchregex.h from /usr/include/qmail
*
* Revision 1.6 2023-07-07 10:43:40+05:30 Cprogrammer
* use NULL instead of 0 for null pointer
* fixed call to out()
Expand All @@ -24,7 +27,7 @@
#include <str.h>
#include <stralloc.h>
#include <fmt.h>
#include "matchregex.h"
#include <matchregex.h>
#include "wildmat.h"
#include "varargs.h"

Expand Down Expand Up @@ -239,7 +242,7 @@ mail_acl(stralloc *acclist, int qregex, char *sender, char *recipient, char verb
void
getversion_mail_acl_c()
{
static char *x = "$Id: mail_acl.c,v 1.6 2023-07-07 10:43:40+05:30 Cprogrammer Exp mbhangui $";
static char *x = "$Id: mail_acl.c,v 1.7 2023-10-24 20:06:40+05:30 Cprogrammer Exp mbhangui $";

x = sccsidwildmath;
x++;
Expand Down
Loading

0 comments on commit 853f026

Please sign in to comment.