INCMSection: User Commands (1)Updated: December 25, 2001 |
INCMSection: User Commands (1)Updated: December 25, 2001 |
The options are as follows:
To lock mbox, both a lock file("user.lock") and flock() (or lockf(), or open(LOCK_EX) are used.
Consider the following situation:
cur/{1,2}
new/{3,4}
Executing incm without the options results in:
cur/{1,2}
new/{}
to inbox: {3,4}
Executing incm with the -a option results in:
cur/{}
new/{}
to inbox: {1,2,3,4}
Executing incm with the -b option results in:
cur/{1,2,3,4}
new/{}
to inbox: {3,4}
Executing incm with the -a option and the -b otpion results in:
cur/{1,2,3,4}
new/{}
to inbox: {1,2,3,4}
So, if both options are specified,
messages are retrieved multiple times.