001 package railo.runtime.tag; 002 003 import railo.runtime.net.mail.MailClient; 004 005 public class Imap extends _Mail { 006 007 /** 008 * @see railo.runtime.tag._Mail#getDefaultPort() 009 */ 010 protected int getDefaultPort() { 011 return 143; 012 } 013 014 /** 015 * @see railo.runtime.tag._Mail#getTagName() 016 */ 017 protected String getTagName() { 018 return "Imap"; 019 } 020 021 /** 022 * @see railo.runtime.tag._Mail#getType() 023 */ 024 protected int getType() { 025 return MailClient.TYPE_IMAP; 026 } 027 028 }