FileDocCategorySizeDatePackage
Info.javaAPI DocApache James 2.3.14359Fri Jan 12 12:56:30 GMT 2007org.apache.james.transport.mailets.listservcommands

Info

public class Info extends BaseCommand
Info handles the info command. It is configured by:
<command name="info" class="Info"/>


It uses the formatted text-based resources for its return mail body:
  • header
  • info
  • admincommands


After formatting the text, the message is delivered with {@link #sendStandardReply} Todo: make displaying the current member list optional
version
CVS $Revision: 494012 $ $Date: 2007-01-08 11:23:58 +0100 (Mo, 08 Jan 2007) $
since
2.2.0

Fields Summary
protected org.apache.james.util.XMLResources[]
xmlResources
protected static final int
HEADER
protected static final int
INFO
protected static final int
ADMIN_COMMANDS
Constructors Summary
Methods Summary
protected java.lang.StringgetMemberList()
Retrieve the current member list

return
the formatted member list
see
#getUsersRepository


        StringBuffer buffer = new StringBuffer(0x1000);
        buffer.append("\r\n");
        UsersRepository usersRepository = getUsersRepository();
        for (Iterator it = usersRepository.list(); it.hasNext();) {
            String userName = (String) it.next();
            buffer.append("    ").append(userName);
            buffer.append("\r\n");
        }

        return buffer.toString();
    
public voidinit(org.apache.james.transport.mailets.ICommandListservManager commandListservManager, org.apache.avalon.framework.configuration.Configuration configuration)


            
        super.init(commandListservManager, configuration);
        xmlResources = initXMLResources(new String[]{"header", "info", "admincommands"});
    
public voidonCommand(org.apache.mailet.Mail mail)
Process the info command using the following text resources:
  • {@link #HEADER}
  • {@link #INFO}
  • {@link #ADMIN_COMMANDS}

param
mail

        //send info mail
        Properties props = getStandardProperties();
        props.put("MEMBER_LIST", getMemberList());

        StringBuffer plainTextMessage = new StringBuffer();
        String header = xmlResources[HEADER].getString("text", props);
        plainTextMessage.append(header);

        String infoMail = xmlResources[INFO].getString("text", props);
        plainTextMessage.append(infoMail);

        String adminCommands = xmlResources[ADMIN_COMMANDS].getString("text", props);
        plainTextMessage.append(adminCommands);

        String subject = xmlResources[INFO].getString("info.subject", props);

        sendStandardReply(mail, subject, plainTextMessage.toString(), null);