periodic queue runner
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 8 May 2016 12:25:57 +0000 (13:25 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sun, 8 May 2016 12:25:57 +0000 (13:25 +0100)
doc/doc-docbook/spec.xfpt
src/src/daemon.c
src/src/exim.c
test/log/0574
test/scripts/0000-Basic/0574
test/stdout/0574

index bb00fa1d23d537b139b4dde72bdabece769575fa..7b1e1ecb69f10b825cf7ad72d58a8b45e583b3f8 100644 (file)
@@ -4465,15 +4465,16 @@ be done. If a message requires any remote deliveries, it remains on the queue
 for later delivery.
 
 .new
-.vitem &%-q[q][i][f[f]][l][G<name>]%&
+.vitem &%-q[q][i][f[f]][l][G<name>[/<time>]]]%&
 .oindex "&%-qG%&"
 .cindex queue named
 .cindex "named queues"
 .cindex "queue" "delivering specific messages"
 If the &'G'& flag and a name is present, the queue runner operates on the
 queue with the given name rather than the default queue.
-Because the name is the remainder of the option string, any
-periodic-run interval must be given as a separate &%-q%& option.
+The name should not contain a &'/'& character.
+For a periodic queue run (see below)
+append to the name a slash and a time value.
 .wen
 
 .vitem &%-q%&<&'qflags'&>&~<&'start&~id'&>&~<&'end&~id'&>
index 635b940553603ae9111179c757b592f0a8c3dbfd..60ef3377331efa506a48b2b036f3667b1653ffbc 100644 (file)
@@ -1835,7 +1835,10 @@ for (;;)
             if (deliver_force_thaw) *p++ = 'f';
             if (queue_run_local) *p++ = 'l';
             *p = 0;
-            extra[0] = opt;
+           if (queue_name)
+             extra[0] = string_sprintf("%sG%s", opt, queue_name);
+           else
+             extra[0] = opt;
 
             /* If -R or -S were on the original command line, ensure they get
             passed on. */
index e4597c2877e345cdb380b92ee7ce09fd21d3f2ed..ea0d0b7900430964adacb9f814e0c263b2cfd6ae 100644 (file)
@@ -3243,8 +3243,11 @@ for (i = 1; i < argc; i++)
 
     if (*argrest == 'G')
       {
-      queue_name = string_copy(argrest+1);
-      do ++argrest; while (*argrest);
+      int i;
+      for (argrest++, i = 0; argrest[i] && argrest[i] != '/'; ) i++;
+      queue_name = string_copyn(argrest, i);
+      argrest += i;
+      if (*argrest == '/') argrest++;
       }
 
     /* -q[f][f][l][G<name>]: Run the queue, optionally forced, optionally local
@@ -3260,8 +3263,8 @@ for (i = 1; i < argc; i++)
         stop_queue_run_id = argv[++i];
       }
 
-    /* -q[f][f][l]<n>: Run the queue at regular intervals, optionally forced,
-    optionally local only. */
+    /* -q[f][f][l][G<name>/]<n>: Run the queue at regular intervals, optionally
+    forced, optionally local only, optionally named. */
 
     else
       {
index 70b22192a3e5c41872dc0f79274a4007bd61a223..6b3ed743c343225bfa1b34be02b148ff0d5a3c26 100644 (file)
 1999-03-02 09:44:33 10HmaY-0005vi-00 => alternate <alternate@test.ex> F=<CALLER@the.local.host.name> Q=alternate R=all T=dump
 1999-03-02 09:44:33 10HmaY-0005vi-00 Completed
 1999-03-02 09:44:33 End 'alternate' queue run: pid=pppp
+1999-03-02 09:44:33 10HmaZ-0005vi-00 <= CALLER@the.local.host.name U=CALLER P=local-smtp S=sss Q=lowpri for lowpri@test.ex
+
+******** SERVER ********
+1999-03-02 09:44:33 exim x.yz daemon started: pid=pppp, -q3s, not listening for SMTP
+1999-03-02 09:44:33 Start 'lowpri' queue run: pid=pppp
+1999-03-02 09:44:33 End 'lowpri' queue run: pid=pppp
+1999-03-02 09:44:33 Start 'lowpri' queue run: pid=pppp
+1999-03-02 09:44:33 10HmaZ-0005vi-00 => lowpri <lowpri@test.ex> F=<CALLER@the.local.host.name> Q=lowpri R=all T=dump
+1999-03-02 09:44:33 10HmaZ-0005vi-00 Completed
+1999-03-02 09:44:33 End 'lowpri' queue run: pid=pppp
index 162b51f85a751c2a0eceafaec889135e532c79e8..3c7a06c5a80caea76c02f03ebff79c6986e12013 100644 (file)
@@ -1,6 +1,8 @@
 # named queues
 # Exim test configuration 0574
 #
+no_msglog_check
+#
 exim  -bs
 MAIL FROM:<CALLER@myhost.test.ex>
 RCPT TO: <normal@test.ex>
@@ -29,4 +31,22 @@ exim -qGnosuchqueue
 exim -qGalternate
 ****
 #
-no_msglog_check
+#
+#
+exim -DSERVER=server -qGlowpri/3s
+****
+sleep 1
+exim -bs
+MAIL FROM:<CALLER@myhost.test.ex>
+RCPT TO: <lowpri@test.ex>
+DATA
+Subject: test 
+
+foo
+.
+QUIT
+****
+#
+sleep 3
+#
+killdaemon
index 47285d74a9ff4edfae9afb4ba864242c817841d7..608078ed1cb1b524af49bcf77c0604838f987368 100644 (file)
@@ -9,3 +9,9 @@
 354 Enter message, ending with "." on a line by itself\r
 250 OK id=10HmaY-0005vi-00\r
 221 the.local.host.name closing connection\r
+220 the.local.host.name ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000\r
+250 OK\r
+250 Accepted\r
+354 Enter message, ending with "." on a line by itself\r
+250 OK id=10HmaZ-0005vi-00\r
+221 the.local.host.name closing connection\r