File: imapfilter_config.5

package info (click to toggle)
imapfilter 1%3A2.7.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 476 kB
  • sloc: ansic: 4,425; makefile: 83
file content (1442 lines) | stat: -rw-r--r-- 37,212 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
.Dd Aug 26, 2018
.Dt IMAPFILTER_CONFIG 5
.Os
.Sh NAME
.Nm imapfilter_config
.Nd imapfilter configuration file
.Sh SYNOPSIS
.Pa $HOME/.imapfilter/config.lua
.Sh DESCRIPTION
.Xr imapfilter 1
uses the Lua programming language as a configuration and extension language,
therefore the configuration file is a Lua script.
.Pp
Although knowledge of Lua is not required to use
.Xr imapfilter 1 ,
it is nonetheless recommended, especially if one wants to extend it.  For more
information on Lua see
.Ad http://www.lua.org/docs.html .
.Sh CONVENTIONS
.Pp
A brief description of the Lua values and types mentioned hereafter in the
manual page follows:
.Bl -item -offset 4n
.It
The
.Vt nil
is the type of the value
.Dq nil ,
whose main property is to be different from any other value; usually it
represents the absence of a useful value.
.It
The
.Vt boolean
is the type of the values
.Dq true
and
.Dq false .
Both
.Dq nil
and
.Dq false
make a condition false; any other value makes it true.
.It
The type
.Vt number
represents real numbers.
.It
The type
.Vt string
represents a sequence of characters and can be defined using single quotes,
double quotes or double square brackets.
.It
The type
.Vt table
implements associative arrays, that is, arrays that can be indexed not only
with numbers, but with any value.
.It
A
.Vt function
is a first-class value; it can be stored in variables, passed as argument to
other functions, and returned as a result.
.El
.Sh OPTIONS
Program's options are set using an already initialised
.Vt table
named
.Dq options ,
in the following manner:
.Bd -literal -offset 4n
options.timeout = 120
options.namespace = false
options.charset = 'ISO-8859-1'
.Ed
.Pp
Available options are:
.Bl -tag -width Ds
.It Va cache
When this option is enabled, parts of messages are cached locally in memory to
avoid being downloaded more than once.  The cache is preserved for the current
session only. This variable takes a
.Vt boolean
as a value. Default is
.Dq true .
.It Va certificates
When this option is enabled, the server certificate can be accepted and stored,
in order to validate the authenticity of the server in future connections. This
variable takes a
.Vt boolean
as a value. Default is
.Dq true .
.It Va charset
Indicates to the server the character set of the strings for the searching
methods.  This variable takes a
.Vt string
as a value.  By default no character set is set, and thus plain ASCII should be
assumed by the server.
.It Va create
According to the IMAP specification, when trying to write a message to a
non-existent mailbox, the server must send a hint to the client, whether it
should create the mailbox and try again or not. However some IMAP servers don't
follow the specification and don't send the correct response code to the
client. By enabling this option the client tries to create the mailbox, despite
of the server's response. This variable takes a
.Vt boolean
as a value.  Default is
.Dq false .
.It Va close
This option controls whether the currently selected mailbox is implicitly
closed at the end of each performed operation, thus removing all messages that
are marked deleted. This variable takes a
.Vt boolean
as a value.  Default is
.Dq false .
.It Va crammd5
When this option is enabled and the server supports the Challenge-Response
Authentication Mechanism (specifically CRAM-MD5), this method will be used for
user authentication instead of a plaintext password LOGIN.  This variable
takes a
.Vt boolean
as a value.  Default is
.Dq true .
.It Va expunge
Normally, messages are marked for deletion and are actually deleted when the
mailbox is closed.  When this option is enabled, messages are expunged
immediately after being marked deleted.  This variable takes a
.Vt boolean
as a value.  Default is
.Dq true .
.It Va info
When this options is enabled, a summary of the program's actions is printed,
while processing mailboxes.  This variable takes a
.Vt boolean
as a value.  Default is
.Dq true .
.It Va keepalive
The time in minutes before terminating and re-issuing the IDLE command, in
order to keep alive the connection, by resetting the inactivity timeout of the
server.  A standards compliant server must have an inactivity timeout of at
least 30 minutes.  But it may happen that some IMAP servers don't respect that,
or some intermediary network device has a shorter timeout.  By setting this
option the above problem can be worked around. This variable takes a
.Vt number
as a value. Default is
.Dq 29
minutes.
.It Va limit
Some servers have problems handling very long requests, but some of the
requests that need to be sent can become quite long, because they apply an
action for many messages at once.  When this option is set, the client will try
to break up these requests into smaller requests, that each operates on fewer
messages at a time.  A good value for this would be
.Dq 50 .
This variable takes a
.Vt number
as a value.  Default is
.Dq 0 .
See also the
.Va range
option which is related.
.It Va namespace
When enabled, the program gets the namespace of the user's personal mailboxes,
and applies automatically the prefix and hierarchy delimiter to any mailboxes
residing on the mail server; the user must use the
.Sq /
character as the delimiter and
.Dq
(ie.  nothing) as the prefix, regardless of the folder
format of the mail server.  This must be disabled, if the user wants to
manually specify mailbox names (eg. because they are not part of the user's
personal namespace mailboxes).  This variable takes a
.Vt boolean
as a value.  Default is
.Dq true .
.It Va persist
When the
.Va recover
option is enabled, the recovery function tries to restore the lost session, but
if it fails to do so it gives up with an error.  In some cases a temporary
network problem might cause the recovery function to fail, but the connection
could be reestablished when trying a bit later.  By enabling this option, the
recovery function will be called repeatedly after a timeout, thus it will
persist when trying to restore the session.  Note, that this will case the
execution of the configuration file to be halted at the point of failure until
the session is restored, which can have side effects to other established
sessions, for example they might get dropped by the server after a while.  This
variable
takes a
.Vt boolean
as a value.  Default is
.Dq false .
.It Va range
Some servers have problems handling long sequence number ranges, and by setting
this option, the number of messages included in each range can be limited.  A
good value for this would be
.Dq 50 .
This variable takes a
.Vt number
as a value.  By default no such limit is imposed.  See also the
.Va limit
option which is related.
.It Va recover
With this option it is possible to control the recovery functionality, which
restores a session (the connection to the server and the IMAP state at the
time), after some unexpected event takes place.  Currently there are two types
of events that can end abnormally a session, and finally cause the program to
terminate: network errors, and the IMAP BYE response which a server can send
anytime.  When this option is set to
.Dq all
the recovery function is triggered by both types of events, when set to
.Dq errors
only in the case of network errors, and when set to
.Dq none
the mechanism is completely disabled.  Default is
.Dq all .
.It Va reenter
When this option is enabled and the connection is recovered after some
unexpected event while in IDLE mode (see also the
.Va recover
option), the client will re-enter IDLE mode.  But when this option is disabled,
and after the connection is recovered, the client will not re-enter IDLE mode,
and instead will continue to execute the next line in the configuration file,
ie. the one after
.Fn enter_idle .
Default is
.Dq true .
.It Va starttls
When this option is enabled and the server supports the IMAP STARTTLS
extension, a TLS connection will be negotiated with the mail server in the
beginning of the session.  This variable takes a
.Vt boolean
as value.  Default is
.Dq true .
.It Va subscribe
By enabling this option new mailboxes that were automatically created, get also
subscribed; they are set active in order for IMAP clients to recognize them.
This variable takes a
.Vt boolean
as a value.  Default is
.Dq false .
.It Va timeout
The time in seconds for the program to wait for a mail server's response.  If
set to 0, the client will block indefinitely.  This variable takes a
.Vt number
as a value.  Default is
.Dq 60
seconds.
.It Va wakeonany
By enabling this option the IDLE command will return on any event that is
received from the server, and not just on the
.Dq RECENT
and
.Dq EXISTS
events, that normally indicate the arrival of a new message.  Examples of other
events are
.Dq FETCH ,
which indicates that the details of a message (eg. its flags) have been
modified, or
.Dq EXPUNGE ,
which indicates that a message has been deleted.  This variable takes a
.Vt boolean
as a value.  Default is
.Dq false .
.El
.Sh ACCOUNTS
Accounts are initialized using the
.Fn IMAP
function, and the details of the connection are defined using an account
.Vt table :
.Bd -literal -offset 4n
myaccount = IMAP {
    server = 'imap.mail.server',
    username = 'me',
    password = 'secret',
    ssl = 'auto'
}
.Ed
.Pp
An account
.Vt table
must have the following elements:
.Bl -tag -width Ds
.It Va server
The hostname of the IMAP server to connect to.  It takes a
.Vt string
as a value.
.It Va username
User's name.  It takes a
.Vt string
as a value.
.El
.Pp
An account
.Vt table
can also have the following optional elements:
.Bl -tag -width Ds
.It Va password
User's secret keyword.  If a password wasn't supplied the user will be asked to
enter one interactively the first time it will be needed (unless
.Vt oauth2
has been set).  It takes a
.Vt string
as a value.
.Pp
Note that due to Lua using backslash
.Sq \e
as an escape character for its strings, one has to use double backslashes in
order to insert a single backslash, and thus a backslash
character inside a password might require four backslashes.
.It Va oauth2
The OAuth2 string to use to authenticate if the server supports the XOAUTH2
authentication mechanism.  If the server does not support it and a
.Vt password
has been also set, authentication will be attempted using the
.Vt password .
It takes a
.Vt string
as a value.
.Pp
Note that this requires that an OAuth client ID and client secret have been
obtained, an OAuth2 token has been generated and authorized, a new access token
has been generated using the refresh token if the last access token has
expired, and an OAuth2 string has been generated from the access token.  The
aforementioned OAuth2 string is a Base64 encoded string that should be set
here.  For more information see
.Ad https://developers.google.com/gmail/xoauth2_protocol .
.It Va port
The port to connect to.  It takes a
.Vt number
as a value.  Default is
.Dq 143
for imap and
.Dq 993
for imaps.
.It Va ssl
Forces an imaps connection and specifies the SSL/TLS protocol/version to be
used.  It takes a
.Vt string
as a value, specifically one of:
.Dq auto ,
.Dq tls1.2 ,
.Dq tls1.1 ,
.Dq tls1 ,
.Dq ssl3 .
.Pp
Note that the latest versions of the OpenSSL library have deprecated
version specific methods, and the actual protocol version used will be
negotiated to be the highest version mutually supported by the client
and the server.  This is also what the
.Dq auto
value does.
.El
.Pp
.Ss LISTING
The following methods can be used on an account to list mailboxes in a folder
of an account:
.Pp
.Bl -tag -width Ds -compact
.It Fn list_all folder
Lists all the available mailboxes in the
.Fa folder
.Pq Vt string ,
and returns a
.Vt table
that contains
.Vt strings ,
the available mailboxes,
and a
.Vt table
that contains
.Vt strings ,
the available folders.
.Pp
.It Fn list_subscribed folder
Lists all the subscribed mailboxes in the
.Fa folder
.Pq Vt string ,
and returns a
.Vt table
that contains
.Vt strings ,
the subscribed mailboxes,
and a
.Vt table
that contains
.Vt strings ,
the subscribed folders.
.El
.Pp
The following methods can be used on an account to list mailboxes, using
wildcards, in a folder of an account.  The
.Sq *
wildcard, matches any character and the
.Sq %
matches any character except the folder delimiter, ie.  non-recursively:
.Pp
.Bl -tag -width Ds -compact
.It Fn list_all folder mailbox
Lists all the available mailboxes in the
.Fa folder
.Pq Vt string
with the name
.Fa mailbox
.Pq Vt string ,
and returns a
.Vt table
that contains
.Vt strings ,
the available mailboxes,
and a
.Vt table
that contains
.Vt strings ,
the available folders.  Wildcards may only be used in the
.Fa mailbox
argument.
.Pp
.It Fn list_subscribed folder mailbox
Lists all the subscribed mailboxes in the
.Fa folder
.Pq Vt string
with the name
.Fa mailbox
.Pq Vt string ,
and returns a
.Vt table
that contains
.Vt strings ,
the subscribed mailboxes,
and a
.Vt table
that contains
.Vt strings ,
the subscribed folders.  Wildcards may only be used in the
.Fa mailbox
argument.
.El
.Pp
Examples:
.Bd -literal -offset 4n
mailboxes, folders = myaccount:list_subscribed('myfolder')
mailboxes, folders = myaccount:list_all('myfolder/mysubfolder', '*')
.Ed
.Ss MANIPULATING
The following methods can be used to manipulate mailboxes in an account:
.Pp
.Bl -tag -width Ds -compact
.It Fn create_mailbox name
Creates the
.Fa name
.Pq Vt string
mailbox.
.Pp
.It Fn delete_mailbox name
Deletes the
.Fa name
.Pq Vt string
mailbox.
.Pp
.It Fn rename_mailbox oldname newname
Renames the
.Fa oldname
.Pq Vt string
mailbox to
.Fa newname
.Pq Vt string .
.Pp
.It Fn subscribe_mailbox name
Subscribes the
.Fa name
.Pq Vt string
mailbox.
.Pp
.It Fn unsubscribe_mailbox name
Unsubscribes the
.Fa name
.Pq Vt string
mailbox.
.El
.Pp
Examples:
.Bd -literal -offset 4n
myaccount:create_mailbox('mymailbox')
myaccount:subscribe_mailbox('mymailbox')
myaccount:unsubscribe_mailbox('myfolder/mymailbox')
myaccount:delete_mailbox('myfolder/mymailbox')
.Ed
.Sh MAILBOXES
After an IMAP account has been initialized, mailboxes residing in that account
can be accessed simply as elements of the account
.Vt table :
.Bd -literal -offset 4n
myaccount.mymailbox
.Ed
.Pp
If mailbox names don't only include letters, digits and underscores, or begin
with a digit, an alternative form must be used:
.Bd -literal -offset 4n
myaccount['mymailbox']
.Ed
.Pp
A mailbox inside a folder can be only accessed by using the alternative form:
.Bd -literal -offset 4n
myaccount['myfolder/mymailbox']
.Ed
.Pp
The methods that are available for an account (eg.
.Fn list_all ,
.Fn create_mailbox ,
etc.) , are considered keywords and must not be used as mailbox names, and the
same also applies for any string starting with an underscore, as they are
considered reserved.
.Ss CHECKING
The following methods can be used to check the status of a mailbox:
.Pp
.Bl -tag -width Ds -compact
.It Fn check_status
.Pp
The
.Fn check_status
method gets the current status of a mailbox, and returns four values of
.Vt number
type: the total number of messages, the number of recent messages, the
number of unseen messages in the mailbox, and the next UID to be assigned to a
new message in the mailbox.
.Pp
.It Fn enter_idle
The
.Fn enter_idle
method implements the IMAP IDLE (RFC 2177) extension.  By using this extension
it's not necessary to poll the server for changes to the selected mailbox (ie.
using the
.Fn check_status
method), but instead the server sends an update when there is a change
in the mailbox (eg. in case of new mail).  When the
.Fn enter_idle
method has been called no more commands in the configuration file are executed
until an update is received, at which point the
.Fn enter_idle
method returns.  For the
.Fn enter_idle
to work, the IDLE extension has to be supported by the IMAP server.
.Pp
The
.Fn enter_idle
method returns a value of type
.Vt boolean :
.Dq true
if the IDLE extension is supported and there was a update in the mailbox, and
.Dq false
if the IDLE extension is not supported, in which case the method returns
immediately.  When the aforementioned return value was
.Dq true ,
an additional second value of type
.Vt string
is also returned, indicating the event received from the server, which is
useful when the
.Va wakeonany
option has been enabled.
.Pp
Apart from an event received by the server, the SIGUSR1 or SIGUSR2 signals can
also interrupt the IDLE mode at any time, and the execution of the
configuration file will then continue from the next line after the
.Fn enter_idle .
In this case only the value
.Dq true
is returned.
.El
.Pp
Examples:
.Bd -literal -offset 4n
exist, unread, unseen, uidnext = myaccount.mymailbox:check_status()
update = myaccount.mymailbox:enter_idle()
update, event = myaccount.mymailbox:enter_idle()
.Ed
.Ss SEARCHING
.Pp
The searching methods in this subsection can be applied to any mailbox.
They return a special form of
.Vt table ,
that contains the messages that match the searching method.  This
.Vt table
can be combined with other
.Vt tables
using logic theory. There are three available operations, that implement
logical
.Dq or ,
logical
.Dq and
and logical
.Dq not .
.Pp
The logical
.Dq or
is implemented using the
.Sq +
operator:
.Bd -literal -offset 4n
results = myaccount.mymailbox:is_unseen() +
          myaccount.mymailbox:is_larger(100000)
.Ed
.Pp
The logical
.Dq and
is implemented using the
.Sq *
operator:
.Bd -literal -offset 4n
results = myaccount.mymailbox:is_unseen() *
          myaccount.mymailbox:is_larger(100000)
.Ed
.Pp
The logical
.Dq not
is implemented using the
.Sq -
operator:
.Bd -literal -offset 4n
results = myaccount.mymailbox:is_unseen() -
          myaccount.mymailbox:is_larger(100000)
.Ed
.Pp
The three logical operators can be combined in the same expression. The logical
.Dq and
has higher precedence than the logical
.Dq or
and the logical
.Dq not ,
with the latter two having the same precedence, and parentheses may be used to
change this behaviour:
.Bd -literal -offset 4n
results = myaccount.mymailbox:is_unseen() +
          myaccount.mymailbox:is_larger(100000) *
          myaccount.mymailbox:contain_subject('test')

results = ( myaccount.mymailbox:is_unseen() +
            myaccount.mymailbox:is_larger(100000) ) *
            myaccount.mymailbox:contain_subject('test')
.Ed
.Pp
The returned
.Vt tables
of the searching methods can also be stored in variables and then further
processed:
.Bd -literal -offset 4n
unseen = myaccount.myaccount:is_unseen()
larger = myaccount.mymailbox:is_larger(100000)
subject = myaccount.mymailbox:contain_subject('test')
results = unseen + larger * subject
.Ed
.Pp
A composite filter that includes one or more simple rules can be defined:
.Bd -literal -offset 4n
myfilter = function ()
	       return myaccount.mymailbox:is_unseen() +
	              myaccount.mymailbox:is_larger(100000) *
                      myaccount.mymailbox:contain_subject('test')
           end

results = myfilter()
.Ed
.Pp
Composite filters can may be more dynamic by adding arguments:
.Bd -literal -offset 4n
myfilter = function (mailbox, size, subject)
	       return mailbox:is_unseen() +
                      mailbox:is_larger(size) *
                      mailbox:contain_subject(subject)
           end

results = myfilter(myaccount.mailbox, 100000, 'test')
.Ed
.Pp
It is also possible to combine the searching methods in different mailboxes,
either at the same or different accounts, for example when the same actions
will be executed on messages residing in different mailboxes or accounts.
.Bd -literal -offset 4n
results = myaccount.mymailbox:is_unseen() +
	  myaccount.myothermailbox:is_larger(100000) +
	  myotheraccount.myothermailbox:contain_subject('test')
.Ed
.Pp
And for those that want to know more about the return values of the following
methods, it is a
.Vt table
which contains
.Vt tables
with two values: the mailbox
.Pq Vt table
the message belongs to, and the message UID
.Pq Vt number
which points to the matching message.  For examples on iterating these
returned tables, or creating new tables of this format (they are actually
metatables implementing sets), see the
.Va samples/extend.lua
file.
.Bd -literal -offset 4n
{
    { <myaccount.mymailbox>, 1 },
    { <myaccount.mymailbox>, 3 },
    { <myaccount.myothermailbox>, 5 },
    { <myothermailbox.myothermailbox>, 7},
    { ... },
    ...
}
.Ed
.Pp
The following method can be used to get all messages in a mailbox:
.Pp
.Bl -tag -width Ds -compact
.It Fn select_all
All messages.
.El
.Pp
The following methods can be used to search for messages that are in a specific
state:
.Pp
.Bl -tag -width Ds -compact
.It Fn is_answered
Messages that have been answered.
.Pp
.It Fn is_deleted
Messages that are marked for later removal.
.Pp
.It Fn is_draft
Messages that have not completed composition.
.Pp
.It Fn is_flagged
Messages that are flagged for urgent/special attention.
.Pp
.It Fn is_new
Messages that are recently arrived (this session is the first to have been
notified about these messages) and have not been read.
.Pp
.It Fn is_old
Messages that are not recently arrived (this session is not the first to have
been notified about these messages) and have not been read.
.Pp
.It Fn is_recent
Messages that are recently arrived (this session is the first to have been
notified about these messages).
.Pp
.It Fn is_seen
Messages that have been read.
.Pp
.It Fn is_unanswered
Messages that have not been answered.
.Pp
.It Fn is_undeleted
Messages that are not marked for later removal.
.Pp
.It Fn is_undraft
Messages that have completed composition.
.Pp
.It Fn is_unflagged
Messages that are not flagged for urgent/special attention.
.Pp
.It Fn is_unseen
Messages that have not been read.
.El
.Pp
The following method can be used to search for messages that have a specific
keyword flag set:
.Pp
.Bl -tag -width Ds -compact
.It Fn has_keyword flag
Messages with the specified keyword flag
.Pq Vt string
set.
.It Fn has_unkeyword flag
Messages without the specified keyword flag
.Pq Vt string
set.
.El
.Pp
The following methods can be used to search for messages based on their size:
.Pp
.Bl -tag -width Ds -compact
.It Fn is_larger size
Messages that are larger than the size
.Pq Vt number
in octets (bytes).
.Pp
.It Fn is_smaller size
Messages that are smaller than the size
.Pq Vt number
in octets (bytes).
.El
.Pp
The following methods can be used to search for messages based on their age:
.Pp
.Bl -tag -width Ds -compact
.It Fn is_newer age
Messages that are newer than the
.Fa age
.Pq Vt number
in days.
.Pp
.It Fn is_older age
Messages that are older than the
.Fa age
.Pq Vt number
in days.
.El
.Pp
The following methods can be used to search for messages based on their arrival
or sent date, in the
.Dq day-month-year
form, where day is the day of the month as a decimal number (01-31), month is
the abbreviated month (
.Dq Jan ,
.Dq Feb ,
.Dq Mar ,
.Dq Apr ,
.Dq May ,
.Dq Jun ,
.Dq Jul ,
.Dq Aug ,
.Dq Sep ,
.Dq Oct ,
.Dq Nov ,
.Dq Dec )
and year is the year as decimal number including the century (eg. 2007):
.Pp
.Bl -tag -width Ds -compact
.It Fn arrived_before date
messages that have arrived earlier than the
.Fa date
.Pq Vt string ,
where
.Fa date
is in the
.Dq day-month-year
form.
.Pp
.It Fn arrived_on date
Messages that have arrived within the
.Fa date
.Pq Vt string ,
where
.Fa date
is in the
.Dq day-month-year
form.
.Pp
.It Fn arrived_since date
Messages that have arrived within or later than the
.Fa date
.Pq Vt string ,
where
.Fa date
is in the
.Dq day-month-year
form.
.Pp
.It Fn sent_before date
Messages that have been sent earlier than the
.Fa date
.Pq Vt string ,
where
.Fa date
is in the
.Dq day-month-year
form.
.Pp
.It Fn sent_on date
Messages that have been sent within the
.Fa date
.Pq Vt string ,
where
.Fa date
is in the
.Dq day-month-year
form.
.Pp
.It Fn sent_since date
Messages that have been sent within or later than the
.Fa date
.Pq Vt string ,
where
.Fa date
is in the
.Dq day-month-year
form.
.El
.Pp
The following methods can be used to do case-insensitive searching, for
messages that contain a specific word or phrase:
.Pp
.Bl -tag -width Ds -compact
.It Fn contain_bcc string
Messages that contain the
.Fa string
.Pq Vt string
in the
.Dq Bcc
header field.
.Pp
.It Fn contain_cc string
Messages that contain the
.Fa string
.Pq Vt string
in the
.Dq Cc
header field.
.Pp
.It Fn contain_from string
Messages that contain the
.Fa string
.Pq Vt string
in the
.Dq From
header field.
.Pp
.It Fn contain_subject string
Messages that contain the
.Fa string
.Pq Vt string
in the
.Dq Subject
header field.
.Pp
.It Fn contain_to string
Messages that contain the
.Fa string
.Pq Vt string
in the
.Dq To
header field.
.Pp
.It Fn contain_field field string
Messages that contain the
.Fa string
.Pq Vt string
in the
.Fa field
.Pq Vt string
header field.
.Pp
.It Fn contain_body string
Messages that contain the
.Fa string
.Pq Vt string
in the message body.
.Pp
.It Fn contain_message string
Messages that contain the
.Fa string
.Pq Vt string
in the message.
.El
.Pp
The following methods can be used to do case-sensitive searching, for messages
that match a specific regular expression pattern. The matching mechanism that
is used to support this is based on the Perl-compatible regular expressions
(PCRE), and more information about the patterns and modifiers that can be used,
is available in the relevant documentation at
.Ad http://pcre.org/original/doc/html/ .
.Pp
This way of searching is not supported by the IMAP protocol, and this means
that what actually happens under the hood, is that the relevant parts of all
the messages are downloaded and matched locally.  It is therefore recommended
to use these methods with meta-searching (see following section), in order to
narrow down the set of messages that should be searched, and thus minimize what
will be downloaded.
.Pp
Note that due to Lua using backslash
.Sq \e
as an escape character for its strings, one has to use double backslashes in
order to insert a single backslash inside a regular expression pattern:
.Pp
.Bl -tag -width Ds -compact
.It Fn match_bcc pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the
.Dq Bcc
header field.
.Pp
.It Fn match_cc pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the
.Dq Cc
header field.
.Pp
.It Fn match_from pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the
.Dq From
header field.
.Pp
.It Fn match_subject pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the
.Dq Subject
header field.
.Pp
.It Fn match_to pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the
.Dq To
header field.
.Pp
.It Fn match_field field pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the
.Fa field
.Pq Vt string
header field.
.Pp
.It Fn match_header pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the message header.
.Pp
.It Fn match_body pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the message body.
.Pp
.It Fn match_message pattern
Messages that match the regular expression
.Fa pattern
.Pq Vt string
in the message.
.El
.Pp
The following method can be used to search for messages using user queries
based on the IMAP specification (RFC 3501 Section 6.4.4):
.Pp
.Bl -tag -width Ds -compact
.It Fn send_query criteria
Searches messages by sending an IMAP search query as described in the
search
.Fa criteria
.Pq Vt string .
.El
.Pp
Examples:
.Bd -literal -offset 4n
results = myaccount.mymailbox:select_all()
results = myaccount.mymailbox:is_new()
results = myaccount.mymailbox:is_recent()
results = myaccount.mymailbox:is_larger(100000)
results = myaccount.mymailbox:is_older(10)
results = myaccount.mymailbox:has_keyword('MyFlag')
results = myaccount.mymailbox:arrived_before('01-Jan-2007')
results = myaccount.mymailbox:sent_since('01-Jan-2007')
results = myaccount.mymailbox:contain_subject('test')
results = myaccount.mymailbox:contain_field('Sender', 'user@host')
results = myaccount.mymailbox:contain_body('hello world')
results = myaccount.mymailbox:match_from('.*(user1|user2)@host')
results = myaccount.mymailbox:send_query('ALL')

results = myaccount['mymailbox']:is_new()
results = myaccount['myfolder/mymailbox']:is_recent()
.Ed
.Sh RESULTS
After one of more searching methods have been applied to one or more mailboxes,
the result contains all the necessary information, such as which messages
matched in which mailboxes.  Using this result these messages can be either
searched further or processed in various way.
.Ss META-SEARCHING
The results of the searching methods can be searched further on in the same way
as searching is done in mailboxes.  The difference is that instead of doing the
search in the whole mailbox, ie. in all the messages, it is instead done only
to those messages that were returned in a previous search.
.Pp
Examples:
.Bd -literal -offset 4n
results:match_message('^[Hh]ello world!?$')
myaccount.mymailbox:is_new():match_body('^[Ww]orld, hello!?$')
.Ed
.Ss PROCESSING
The processing methods are applied to the results that searching returned.
.Pp
The following method can be used to delete messages in a mailbox:
.Pp
.Bl -tag -width Ds -compact
.It Fn delete_messages
Deletes the messages that matched.
.El
.Pp
The following methods can be used to copy and move messages in a mailbox at the
same or different accounts.  If the destination mailbox is in a different
account than the source mailbox, then the messages are downloaded and then
uploaded to the destination:
.Pp
.Bl -tag -width Ds -compact
.It Fn copy_messages destination
Copies the messages to the
.Fa destination ,
which is a mailbox at an account.
.Pp
.It Fn move_messages destination
Moves the messages to the
.Fa destination ,
which is a mailbox at an account.
.El
.Pp
The following methods can be used to mark messages in a mailbox:
.Pp
.Bl -tag -width Ds -compact
.It Fn mark_answered
Marks the messages as answered.
.Pp
.It Fn mark_deleted
Marks the messages for later removal.
.Pp
.It Fn mark_draft
Marks the messages as draft.
.Pp
.It Fn mark_flagged
Marks the messages for urgent/special attention.
.Pp
.It Fn mark_seen
Marks the messages as read.
.Pp
.It Fn unmark_answered
Unmarks the messages that have been marked as answered.
.Pp
.It Fn unmark_deleted
Unmarks the messages that have been marked for later removal.
.Pp
.It Fn unmark_draft
Unmarks the messages that have been marked as draft.
.Pp
.It Fn unmark_flagged
Unmarks the messages that have been marked for urgent/special attention.
.Pp
.It Fn unmark_seen
Unmarks the messages that have been marked as read.
.Pp
.El
.Pp
The following methods can be used to flag messages in a mailbox. The standard
system flags are
.Dq \eAnswered ,
.Dq \eDeleted ,
.Dq \eDraft ,
.Dq \eFlagged ,
.Dq \eSeen ,
while if the server supports it, new user keywords may be defined:
.Pp
.Bl -tag -width Ds -compact
.It Fn add_flags flags
Adds the
.Fa flags
.Po
.Vt table
that contains
.Vt strings
.Pc
to the messages.
.Pp
.It Fn remove_flags flags
Removes the
.Fa flags
.Po
.Vt table
that contains
.Vt strings
.Pc
from the messages.
.Pp
.It Fn replace_flags flags
Replaces the
.Fa flags
.Po
.Vt table
that contains
.Vt strings
.Pc
of the messages.
.El
.Pp
Examples:
.Bd -literal -offset 4n
results:delete_messages()
results:copy_messages(myaccount.myothermailbox)
results:move_messages(myotheraccount.mymailbox)
results:mark_seen()
results:unmark_flagged()
results:add_flags({ 'MyFlag', '\e\eSeen' })
results:remove_flags({ '\e\eSeen' })

results:move_messages(myotheraccount['myfolder/mymailbox'])
.Ed
.Sh MESSAGES
The messages that are residing in any mailbox can be also accessed, as a whole
or in parts.  Messages can be accessed using their unique identifier (UID):
.Bd -literal -offset 4n
myaccount.mymailbox[22]
.Ed
.Pp
The UIDs of messages the user is interested in, are gained from the results of
searching:
.Bd -literal -offset 4n
results = account.INBOX:is_unseen()
for _, message in ipairs(results) do
    mailbox, uid = table.unpack(message)
    header = mailbox[uid]:fetch_header()
end
.Ed
.Ss FETCHING
.Pp
The following methods can be used to fetch parts of messages.  The methods
return a
.Vt string .
The downloaded message parts are cached locally, so they can be reused inside
the same program session:
.Pp
.Bl -tag -width Ds -compact
.It Fn fetch_message
Fetches the header and body of the message.
.Pp
.It Fn fetch_header
Fetches the header of the message.
.Pp
.It Fn fetch_body
Fetches the body of the messages.
.Pp
.It Fn fetch_field field
Fetches the specified header
.Fa field
.Pq Vt string
of the message.
.Pp
.It Fn fetch_part part
Fetches the specified
.Fa part
.Pq Vt string
of the message.
.El
.Pp
The following methods can be used to fetch details about the state of a
message:
.Pp
.Bl -tag -width Ds -compact
.It Fn fetch_flags
Fetches the flags of the message.  Returns a
.Vt table
of
.Vt strings .
.Pp
.It Fn fetch_date
Fetches the internal date of the message.  Returns a
.Vt string .
.Pp
.It Fn fetch_size
Fetches the size of the message.  Returns a
.Vt number .
.Pp
.It Fn fetch_structure
Fetches the body structure of the message. Returns a
.Vt table
that has as keys the parts of the message, and as values a
.Vt table
that has one mandatory element, the type
.Pq Vt string
of the part, and two optional elements, the size
.Pq Vt number
and name
.Pq Vt string
of the part.
.El
.Ss APPENDING
.Pp
The following methods can be used to append a message to a mailbox:
.Pp
.Bl -tag -width Ds -compact
.It Fn append_message message
Appends the
.Fa message
.Pq Vt string
to the mailbox.
.Pp
.It Fn append_message message flags date
Appends the
.Fa message
.Pq Vt string
to the mailbox, setting the specified
.Fa flags
.Po
.Vt table
of
.Vt strings
.Pc ,
as returned by
.Fn fetch_flags ,
and
.Fa date
.Pq Vt string ,
as returned by
.Fn fetch_date .
.El
.Pp
Examples:
.Bd -literal -offset 4n
myaccount.mymailbox[2]:fetch_message()
myaccount.mymailbox[3]:fetch_field('subject')
myaccount.mymailbox[5]:fetch_part('1.1')

myaccount['mymailbox'][7]:fetch_message()
myaccount['myfolder/mymailbox'][11]:fetch_message()

myaccount.mymailbox:append_message(message)
.Ed
.Sh FUNCTIONS
The following auxiliary functions are also available for convenience:
.Pp
.Bl -tag -width Ds -compact
.It Fn form_date days
Forms a date in
.Dq day-month-year
format that the system had before the number of
.Fa days
.Pq Vt number ,
and returns it as a
.Vt string .
.Pp
.It Fn get_password prompt
Displays the specified
.Fa prompt
.Pq Vt string ,
and reads a password, while character echoing is turned off.  Returns
that password as a
.Vt string .
.Pp
.It Fn become_daemon interval commands
Detaches the program from the controlling terminal and runs it in the
background as system daemon. The program will then repeatedly poll at the
specified
.Fa interval
.Pq Vt number
in seconds. Each time the program wakes up, the
.Fa commands
.Pq Vt function
are executed.
.Pp
.It Fn become_daemon interval commands nochdir noclose
Detaches the program from the controlling terminal and runs it in the
background as system daemon. The program will then repeatedly poll at the
specified
.Fa interval
.Pq Vt number
in seconds. Each time the program wakes up, the
.Fa commands
.Pq Vt function
are executed.
.Pp
If
.Fa nochdir
.Pq Vt boolean
is
.Dq true ,
the current working directory is not changed to the root directory
.Pq Pa / .
If
.Fa noclose
.Pq Vt boolean
is
.Dq true ,
the standard input, standard output and standard error are not redirected to
.Pa /dev/null .
.Pp
.It Fn pipe_to command data
Executes the system's
.Fa command
.Pq Vt string
and sends the
.Fa data
.Pq Vt string
to the standard input channel of the subprocess. Returns a
.Vt number ,
the exit status of the child process.
.Pp
.It Fn pipe_from command
Executes the system's
.Fa command
.Pq Vt string
and retrieves the data from the standard output channel of the subprocess.
Returns a
.Vt number ,
the exit status of the child process, and a
.Vt string ,
the output of the child process.
.Pp
.It Fn regex_search pattern string
Implements Perl-compatible regular expressions (PCRE). The
.Fa pattern
.Pq Vt string
is a PCRE pattern. The
.Vt string
.Pq Vt string
is the subject string in which the pattern is
matched against. Returns at least a
.Vt boolean ,
that denotes if the match was successful, and any captures which are of
.Vt string
type.  Note that due to Lua using backslash
.Sq \e
as an escape character for its strings, one has to use double backslashes in
order to insert a single backslash inside a regular expression pattern.  For
more information on PCRE see
.Ad http://pcre.org/original/doc/html/ .
.El
.Pp
Examples:
.Bd -literal -offset 4n
date = form_date(14)
password = get_password('Enter password: ')
become_daemon(600, myfunction)
status = pipe_to('mycommandline', 'mydata')
status, data = pipe_from('mycommandline')
success, capture = regex_search('^(?i)pcre: (\e\ew)$', 'mystring')
.Ed
.Sh EXAMPLES
See
.Pa samples/config.lua
and
.Pa samples/extend.lua
in the source code distribution.
.Sh ENVIRONMENT
.Bl -tag -width Ds
.It Ev HOME
User's home directory.
.El
.Sh SEE ALSO
.Xr imapfilter 1