mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-05 12:17:16 +02:00
18 lines
303 B
Text
18 lines
303 B
Text
# Atoms:
|
|
|
|
NUMBER: /\d+/
|
|
|
|
# Rules:
|
|
|
|
threadmember: NUMBER { $return = $item{NUMBER} ; } |
|
|
thread { $return = $item{thread} ; }
|
|
|
|
thread: "(" threadmember(s) ")"
|
|
{
|
|
$return = $item{'threadmember(s)'}||undef;
|
|
}
|
|
|
|
# Start:
|
|
start: /^\* THREAD /i thread(s?) {
|
|
$return=$item{'thread(s?)'}||undef;
|
|
}
|