2006-07-31 [wwp] 2.4.0cvs3
[claws.git] / src / matcher_parser_lex.l
index cd2b75a5f9e6bb586a2c943cf9e9c2e9dbdd6fea..ef12ca921bba5869db16ff8487eaa16fcdf095b8 100644 (file)
@@ -15,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include <string.h>
@@ -57,6 +57,8 @@ void matcher_parser_init(void)
 
 %%
                        
+"in"   return MATCHER_IN; 
+
                        /*
                         * a keyword consists of alpha and underscore 
                         * characters, possibly preceded by a tilde (~)
@@ -113,5 +115,14 @@ void matcher_parser_init(void)
 rulename       {
                return MATCHER_RULENAME;
                }
+disabled       {
+               return MATCHER_DISABLED;
+               }
+account        {
+               return MATCHER_ACCOUNT;
+               }
+enabled        {
+               return MATCHER_ENABLED;
+               }
 
 %%