# HG changeset patch # User cli # Date 1315678819 -7200 # Node ID 28870db3b9fdb3398e7a3cdfa338814e421a587e # Parent 7e24949b87b0f8159b8efd2a509fed8ccc0ae1e4 Work on XDaemon command diff -r 7e24949b87b0 -r 28870db3b9fd src/org/sonews/daemon/command/XDaemonCommand.java --- a/src/org/sonews/daemon/command/XDaemonCommand.java Sat Sep 10 18:18:05 2011 +0200 +++ b/src/org/sonews/daemon/command/XDaemonCommand.java Sat Sep 10 20:20:19 2011 +0200 @@ -131,9 +131,21 @@ Group group = StorageManager.current().getGroup(commands[2]); String flagName = commands[4]; if(commands[3].equalsIgnoreCase("SET")) { - + if(flagName.equals("MAILINGLIST")) { + + } else if(flagName.equals("DELETED")) { + + } else if(flagName.equals("READONLY")) { + + } } else if(commands[3].equalsIgnoreCase("UNSET")) { - + if(flagName.equals("MAILINGLIST")) { + + } else if(flagName.equals("DELETED")) { + + } else if(flagName.equals("READONLY")) { + + } } else { conn.println("500 invalid command usage"); }