mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-07 21:25:23 +02:00
19 lines
293 B
Text
19 lines
293 B
Text
# Atoms:
|
|
|
|
NUMBER: /\d+/
|
|
|
|
# Rules:
|
|
|
|
threadmember: NUMBER { $return = $item{NUMBER} ; } |
|
|
thread { $return = $item{thread} ; }
|
|
|
|
thread: "(" threadmember(s) ")"
|
|
{
|
|
$return = $item{threadmember}||undef;
|
|
}
|
|
|
|
# Start:
|
|
start: /^\* THREAD /i thread(s?) {
|
|
$return=$item{thread}||undef;
|
|
}
|
|
|