config.yml

Outdated: Page will be update to Mailings v1.3 tomorrow

Links:

Here is every config entity with meaning:

Mailings:
  Config:
    Messages:
      Inbox:
        Title:
          #Head, if you open your inbox
          Own: 'Your inbox:'
          #Head, if you open %player%s inbox
          Other: '%player%s inbox:'
        Empty:
          #Message, if your inbox is empty
          Own: 'Your inbox is empty.'
          #Message, if %player%s inbox is empty
          Other: '%player%s inbox is empty.'
      Outbox:
        Title:
          #Head, if you open your outbox
          Own: 'Your outbox:'
          #Head, if you open %player%s outbox
          Other: '%player%s outbox:'
        Empty:
          #Message, if your outbox is empty
          Own: 'Your outbox is empty.'
          #Message, if %player%s outbox is empty
          Other: '%player%s outbox is empty.'
      Entry:
        #Message, if your join the server and you have no new mail
        NoNewMail: 'You have no new messages.'
        #Message, if your join the server and you have one new mail
        OneNewMail: 'You have a new message.'
        #Message, if your join the server and you have %amount% new mails
        MoreNewMail: 'You have %amount% new messages.'
      Error:
        #ErrorMsg, if a player couldn't be found (e.g. open an inbox from a unlocated player)
        NoPlayerFound: 'The Player %player% could not be found.'
        #ErrorMsg, if an argument have to, but it is not a number (e.g. help page)
        NoNumber: '%input% is not a number.'
        #ErrorMsg, if you send a command with not enough args (e.g. try to send a mail with one arg)
        ToFewArgs: 'You have entered too few arguments.'
        #ErrorMsg, if you try to access a mail, didn't exist (e.g. delete a mail which didn't exist)
        MailNotFound: 'The mail with ID %mailid% is not found.'
        #Currently unused; an exception will throw out (see FAQ)
        DamagedMail: 'The mail with ID %mailid% is damaged. Please notify server admin!'
        #ErrorMsg, if the error is unknown (see FAQ)
        UnknownError: 'There was an unknown error.'
        #ErrorMsg, if you try to send a mail to yourself
        SendToYourself: 'You can not send mail to yourself.'
        #ErrorMsg, if you try to send a mail to someone with an crowded inbox (limit can be set)
        InboxIsBurstingAtTheSeams: 'The inbox of %player% is bursting at the seames. Sending unsuccessful.'
        #ErrorMsg, if you try to enter a command without permission
        NoPermission: 'You have not enough permissions.'
      Other:
        #Message, if you reload the config, mails, will be saved
        ReloadConfig: 'Config was reloaded.'
        #Message, if you send a mail successfully.
        SendMail: 'The mail with ID %mailid% was sended to %player%.'
        #Message, if you recieve a mail while beeing online
        GetMail: 'You got a new mail with ID %mailid% from %player%.'
        #Message, if you delete a mail successfully
        DelMail: 'The mail with ID %mailid% deleted successfully.'
    Proerties:
      #Maximum amount of mails in a inbox (do not expand it above 25; can be instable)
      MaxInboxPerPlayer: 20
      #Maximum amount of days until the mail be be delete automaticly
      DaysUntilAutoDeleting: 28
      #True, if error messages should be underlined
      ErrorUnderlined: true
      #True, if headers should be underlined (e.g. "Message:" on /readmail or inbox/outbox header)
      HeaderUnderlined: true
      #True, if headers should be bolded (e.g. "Message:" on /readmail or inbox/outbox header)
      HeaderBolded: false
      #Set it to true, if you wish to be notify, if an inbox of sb. is crowded and you send a roundmai to him
      #No affect if you send single mails; recommend for small server and active members
      BroadcastIfInboxIsBurstingAtTheSeams: false
      #Prefix of every message (e.g. "[Mailings] You have not enough permissions.")
      PrefixName: Mailings
      #Main color (e.g. inbox header or other-messages)
      #Use minecraft color codes; default: dark purple
      FirstMsgColor: '&5'
      #Secound color (e.g. names)
      #Use minecraft color codes; default: light purple
      SecoundMsgColor: '&d'
      #Color for error messages
      #Use minecraft color codes; default: dark red
      ErrColor: '&4'
      #Prefix color
      #Use minecraft color codes; default: gold/orange
      PrefixColor: '&6'

To main page...