Unsupported scripts and control panel web app for a hosting company
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

027.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?PHP
  2. define('SUPPORT_TITLE', 'Mailboxes and e-mail addresses');
  3. define('SUPPORT_BTITLE', 'Mailboxes and e-mail addresses');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. // addDashboardItem('Related articles', 'How to add a site', 'support/019');
  6. if (!defined('UID')) {
  7. addDashboardItem('Useful links', 'Login', 'login');
  8. }
  9. $sbody = "
  10. <p>
  11. An e-mail account on UTD-Hosting consists of two parts: a mailbox and one or
  12. more e-mail addresses that point to that mailbox. A mailbox is a container
  13. that stores your messages until your e-mail client downloads them (like a
  14. letter box holds letters until you fetch them). You can have one or more
  15. e-mail addresses pointing to each mailbox, and any e-mail sent to these
  16. addresses is placed in the mailbox.
  17. </p>
  18. <p>
  19. For example, if you own the domain <em>example.com</em>, and want to set up
  20. e-mail accounts for two users, bob and alice, you would set up two mailboxes
  21. and two e-mail addresses. The mailboxes could be called <em>bob@example.com</em>
  22. and <em>alice@example.com</em> (although it's not really that important), and
  23. the e-mail addresses will be the same:
  24. </p>
  25. <img src=\"".CP_PATH."res/mbox1.png\" alt=\"Mailbox diagram\">
  26. <p>
  27. Now suppose that bob also wants to receive e-mail sent to
  28. <em>admin@example.com</em>. You create another e-mail address, but map it to
  29. the same mailbox as his other e-mail address:
  30. </p>
  31. <img src=\"".CP_PATH."res/mbox2.png\" alt=\"Mailbox diagram\">
  32. <p>
  33. Now when bob's e-mail client connects to his mailbox, he will receive mail
  34. sent to both e-mail addresses.
  35. </p>
  36. ";
  37. define('SUPPORT_BODY', $sbody);
  38. ?>