1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833
|
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<!-- $Id: adminarea.xml,v 1.49 2012/02/23 12:52:55 mg Exp $ -->
<chapter id="adminarea">
<title>The ADMIN area of OTRS</title>
<section id="adminarea-general">
<title>Basics</title>
<para>
OTRS administrators use the Admin page on the OTRS web interface to configure the system - adding agents, customers and queues, ticket and mail settings, installing additional packages such as FAQ and ITSM, and much more.</para>
<para>
Agents who are members of the <emphasis>admin</emphasis> group can access the Admin area by clicking the <emphasis>Admin</emphasis> link in the navigation bar (see Figure below). The rest of the agents won't
see this link.
</para>
<para>
<screenshot>
<screeninfo>The OTRS Admin screen</screeninfo>
<graphic srccredit="Adminarea - screenshot" scale="40" fileref="screenshots/adminarea.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: OTRS Admin screen.</emphasis>
</para>
</section>
<section id="adminarea-agents-groups-and-roles">
<title>Agents, Groups and Roles</title>
<section id="adminarea-agents">
<title>Agents</title>
<para>
By clicking the link <emphasis>Agents</emphasis>, you get access to the agent management screen of OTRS (see Figure below). Administrators can add, change or deactivate agent accounts. Administrators can also manage agent preferences, for instance the language and notification settings for their interface.
</para>
<note>
<para>
An OTRS agent account may be deactivated but not deleted. Deactivation is done by setting the Valid flag to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
<para>
<screenshot>
<screeninfo>Agent management</screeninfo>
<graphic srccredit="Adminarea Agent management - screenshot" scale="40" fileref="screenshots/admin-agents.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Agent management.</emphasis>
</para>
<para>
To register an agent, click on the "Add agent" button, type all the needed data and press the Submit button at the bottom of the screen, as shown in Figure.
</para>
<para>
<screenshot>
<screeninfo>Adding an agent</screeninfo>
<graphic srccredit="Adminarea agent management - screenshot" scale="40" fileref="screenshots/add-agent.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a new agent.</emphasis>
</para>
<para>
After the new agent account has been created, you should make the agent a member of one or more groups or roles. Information about groups and roles is available in the <link linkend="adminarea-groups">Groups</link> and <link linkend="adminarea-roles">Roles</link> sections of this chapter.
</para>
</section>
<section id="adminarea-groups">
<title>Groups</title>
<para>
Every agent's account should belong to at least one group or role. In a brand new installation, there are three pre-defined groups available, as shown in Table 5-1.
</para>
<para>
<table id="table-of-groups-after-installation">
<title>Default groups available on a fresh OTRS installation</title>
<tgroup cols="2">
<thead>
<row>
<entry>Group</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>admin</entry>
<entry>Allowed to perform administrative tasks in the system.</entry>
</row>
<row>
<entry>stats</entry>
<entry>
Qualified to access the stats module of OTRS and generate statistics.
</entry>
</row>
<row>
<entry>users</entry>
<entry>
Agents should belong to this group, with read and write permissions. They can then access all functions of the ticket system.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
<note>
<para>
In a brand new OTRS installation, the group <emphasis>users</emphasis> is initially empty. The agent 'root@localhost' belongs by default to the admin and stats groups.
</para>
</note>
<para>
You can access the group management page (see Figure below) by clicking the <emphasis>Groups</emphasis> link in the admin area.
</para>
<para>
<screenshot>
<screeninfo>Group management</screeninfo>
<graphic srccredit="Adminarea group management - screenshot" scale="40" fileref="screenshots/admin-groups.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Group management.</emphasis>
</para>
<note>
<para>
As with agents, an OTRS group may be deactivated but not deleted. Deactivation is done by setting the Valid flag to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
<para>
To add an agent to a group, or to change the agents who belong to a group, you can use the link <emphasis>Agents <-> Groups</emphasis> from the Admin page (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Agent Group management</screeninfo>
<graphic srccredit="Adminarea groups and agents - screenshot" scale="40" fileref="screenshots/admin-agents-and-groups.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Group management.</emphasis>
</para>
<para>
An overview of all groups and agents in the system is displayed. You can also use the filters to find a specific entity. If you want to change the groups that an agent is member of, just click on the agent's name (see Figure below). To change the agents associated with a group, just click on the group you want to edit (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Agent-Group management</screeninfo>
<graphic srccredit="Adminarea groups and agents - screenshot" scale="40" fileref="screenshots/agent-group-relations.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change the groups an agent belongs to.</emphasis>
</para>
<para>
<screenshot>
<screeninfo>Agent-Group management</screeninfo>
<graphic srccredit="Adminarea groups and agents - screenshot" scale="40" fileref="screenshots/agent-group-relations2.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change the agents that belong to a specific group.</emphasis>
</para>
<para>
Each group has a set of rights associated with it, and each member agent may have some combination of these rights for themselves. A list of the permissions / rights is shown in Table 5-2.
</para>
<para>
<table id="table-of-group-permissions-after-installation">
<title>Rights associated with OTRS Groups</title>
<tgroup cols="2">
<thead>
<row>
<entry>
Right
</entry>
<entry>
Description
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
ro
</entry>
<entry>
Read only access to the tickets, entries and queues of this group.
</entry>
</row>
<row>
<entry>
move into
</entry>
<entry>
Right to move tickets or entries between queues or areas that belong to this group.
</entry>
</row>
<row>
<entry>
create
</entry>
<entry>
Right to create tickets or entries in the queues or areas of this group.
</entry>
</row>
<row>
<entry>
owner
</entry>
<entry>
Right to update the owner of tickets or entries in queues or areas that belong to this group.
</entry>
</row>
<row>
<entry>
priority
</entry>
<entry>
Right to change the priority of tickets or entries in queues or areas that belong to this group.
</entry>
</row>
<row>
<entry>
rw
</entry>
<entry>
Full read and write access on tickets or entries in the queues or areas that belong to this group.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
<note>
<para>
By default, the QueueView only lists tickets in queues that an agent has <emphasis>rw</emphasis> access to, i.e., the tickets the agent needs to work on. If you want to change this behaviour, you can set
<link linkend="Ticket:Frontend::Agent::Ticket::ViewQueue:Ticket::Frontend::AgentTicketQueue_ViewAllPossibleTickets">
Ticket::Frontend::AgentTicketQueue###ViewAllPossibleTickets
</link>
to <emphasis>Yes</emphasis>.
</para>
</note>
</section>
<section id="adminarea-roles">
<title>Roles</title>
<para>
Roles are a powerful feature to manage the access rights of many agents in a very simple and quick manner. They are particularly applicable on large, complex support systems with a lot of agents, groups and queues. An example below explains when they may be used.
</para>
<para>
Suppose that you have a system with 100 agents, 90 of them with access to a single queue called "support" where all support requests are handled. The "support" queue contains some sub queues. The other 10 agents have permission to access all queues of the system. These 10 agents dispatch tickets, watch the raw queue and move spam messages into the "junk" queue.
</para>
<para>
The company now opens a new department that sells some products. Order request and acceptance, order confirmation, bills, etc. must be processed, and some of the company's agents shall do this via OTRS. The different agents have to get access to the new queues that must be created.
</para>
<para>
Because it would take a long time to change the access rights for the different agents manually, roles that define the different access levels can be created. The agents can then be added to one or more roles, with their rights automatically changed. If a new agent account is created, it is also possible to add this account to one or more roles.
</para>
<note>
<para>
Roles are really useful when maintaining larger OTRS installations. You should take care in their use though. Mixing Agent to Group with Agent to Role mappings can make for a complex access control scheme, difficult to understand and maintain. If you wish to use only roles and disable the Agents <-> Groups option in the Admin area, you can do so by modifying the <link linkend="Framework:Frontend::Admin::ModuleRegistration:Frontend::Module_AdminUserGroup">Frontend::Module###AdminUserGroup</link> in the SysConfig. Be aware that this won't remove already existing Agents to Group assignments!
</para>
</note>
<para>
You can access the role management section (see Figure below ) by clicking the <emphasis>Roles</emphasis> link on the Admin page.
</para>
<para>
<screenshot>
<screeninfo>Role management</screeninfo>
<graphic srccredit="Adminarea roles - screenshot" scale="40" fileref="screenshots/admin-roles.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Role management.</emphasis>
</para>
<note>
<para>
As with agent and groups, roles once created can be deactivated but not deleted. To deactivate, set the Valid option to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
<para>
An overview of all roles in the system is displayed. To edit a role's settings, click on the role's name. In a fresh new OTRS installation, there are no roles defined by default. To register one, click on the "Add role" button, provide the needed data and submit it (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Role management</screeninfo>
<graphic srccredit="Adminarea roles - screenshot" scale="40" fileref="screenshots/add-role.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a new role.</emphasis>
</para>
<para>
To get an overview of all roles and agents in the system, click on the link Roles <-> Agents on the Admin page. You can also use filters to find a specific element. If you want to change the roles associated with an agent, just
click on the agent's name (see Figure below). To change the agents associated with a role, click on the role you want to edit (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Agent Role management</screeninfo>
<graphic srccredit="Adminarea roles and agents - screenshot" scale="40" fileref="screenshots/admin-roles-agents-relation.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change the Roles associated with an Agent.</emphasis>
</para>
<para>
<screenshot>
<screeninfo>Agent Role management</screeninfo>
<graphic srccredit="Adminarea groups and agents - screenshot" scale="40" fileref="screenshots/admin-roles-agents-relation2.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change the Agents associated with a specific Role.</emphasis>
</para>
<para>
To get an overview of all roles and groups in the system, click on the link Roles <-> Groups on the Admin page. You will see a similar screen as the one shown in the Figure. You can also use filters to find a specific entity.
</para>
<para>
<screenshot>
<screeninfo>Role Group management</screeninfo>
<graphic srccredit="Adminarea roles and groups - screenshot" scale="40" fileref="screenshots/admin-roles-groups.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Manage Roles-Groups relations.</emphasis>
</para>
<para>
To define the different access rights for a role, click on the name of a role or a group (see below the Figures 5.13 and 5.14, respectively).
</para>
<para>
<screenshot>
<screeninfo>Change Group relations for a Role</screeninfo>
<graphic srccredit="Adminarea roles and groups - screenshot" scale="40" fileref="screenshots/groups-roles-relations.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Group relations for a Role.</emphasis>
</para>
<para>
<screenshot>
<screeninfo>Change Role relations for a Group</screeninfo>
<graphic srccredit="Adminarea roles and groups - screenshot" scale="40" fileref="screenshots/groups-roles-relations2.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Role relations for a Group.</emphasis>
</para>
</section>
</section>
<section id="customers-and-groups">
<title>Customers and Customer Groups</title>
<section id="adminarea-customers">
<title>Customers</title>
<para>
OTRS supports different types of users. Using the link "Customers" (via the navigation bar, or the Admin page), you can manage the accounts of your customers (see Figure below), who can log into the system via the Customers interface (customer.pl). Through this interface, your customers can create tickets and access them as they are updated. It is important to know that a customer is needed for the ticket history in the system.
</para>
<para>
<screenshot>
<screeninfo>Customer management</screeninfo>
<graphic srccredit="Adminarea customer - screenshot" scale="40" fileref="screenshots/admin-customer.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Customer management.</emphasis>
</para>
<para>
You can search for a registered customer, or edit their settings by clicking on their name. You also have the possibility to change the customer back-end, for further information please refer to the chapter about <link linkend="external-backends">external back-ends</link>.
</para>
<para>
To create a new customer account, click on the "Add customer" button (see Figure below). Some of the fields are mandatory, i.e., they have to contain values, so if you leave one of those empty, it will be highlighted in red.
</para>
<para>
<screenshot>
<screeninfo>Customer management</screeninfo>
<graphic srccredit="Adminarea customer - screenshot" scale="40" fileref="screenshots/add-customer.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a customer.</emphasis>
</para>
<para>
Customers can access the system by providing their username and password. The CustomerID is needed by the system to identify the user and associated tickets. Since the email address is a unique value, it can be used as the ID.
</para>
<note>
<para>
As with agents, groups and roles, customers can not be deleted from the system, only deactivated by setting the Valid option to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
</section>
<section id="adminarea-customers-groups">
<title>Customer Groups</title>
<para>
Customer users can also be added to a group, which can be useful if you want to add customers of the same company with access to one or a few queues. First create the group to which your customers will belong, via the <link linkend="adminarea-groups">Group management module</link>. Then add the <link linkend="adminarea-queue">queues</link> and select the new group for the queues.
</para>
<para>
The next step is to activate the customer group support. This can be done with the configuration parameter <link linkend="Framework:Frontend::Customer:CustomerGroupSupport">CustomerGroupSupport</link>, from the Admin SysConfig option. Using the parameter <link linkend="Framework:Frontend::Customer:CustomerGroupAlwaysGroups">CustomerGroupAlwaysGroups</link>, you can specify the default groups for a newly added customer, so that every new account will be automatically added to these groups.
</para>
<para>
Through the link "Customers <-> Groups" you can manage which customer shall belong to the different groups (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Customer Group management</screeninfo>
<graphic srccredit=">Adminarea customer groups - screenshot" scale="40" fileref="screenshots/admin-customer-groups.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Customer-Group relations management.</emphasis>
</para>
<para>
To define the different groups a customer should be part of and vice versa, click on the corresponding customer username or group (see below the Figures 5.16 and 5.17, respectively).
</para>
<para>
<screenshot>
<screeninfo>Change Group relations for a Customer</screeninfo>
<graphic srccredit="Adminarea customers and groups - screenshot" scale="40" fileref="screenshots/groups-customers-relations.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Group relations for a Customer.</emphasis>
</para>
<para>
<screenshot>
<screeninfo>Change Customer relations for a Group</screeninfo>
<graphic srccredit="Adminarea customer and groups - screenshot" scale="40" fileref="screenshots/groups-customers-relations2.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Customer relations for a Group.</emphasis>
</para>
</section>
</section>
<section id="adminarea-queue">
<title>Queues</title>
<para>
Clicking on the link "Queues" of the Admin page, you can manage the <link linkend="what-is-a-queue">queues</link> of your system (see Figure below). In a new OTRS installation there are 4 default queues: Raw, Junk, Misc and Postmaster. All incoming messages will be stored in the "Raw" queue if no filter rules are defined. The "Junk" queue can be used to store spam messages.
</para>
<para>
<screenshot>
<screeninfo>Queue management</screeninfo>
<graphic srccredit="Adminarea queue - screenshot" scale="40" fileref="screenshots/admin-queue.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Queue management.</emphasis>
</para>
<para>
Here you can add queues (see Figure below) and modify them. You can specify the group that should use the queue. You can also set the queue as a sub-queue of an existing queue.
</para>
<para>
<screenshot>
<screeninfo>Queue management</screeninfo>
<graphic srccredit="Adminarea queue - screenshot" scale="40" fileref="screenshots/add-queue.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a new queue.</emphasis>
</para>
<para>
You can define an unlock timeout for a queue - if an agent locks a ticket and does not close it before the unlock timeout has passed, the ticket will be automatically unlocked and made available for other agents to work on.
</para>
<para>
There are three escalation time settings that can be associated at queue level:
</para>
<itemizedlist>
<title>Escalation - First Response Time</title>
<listitem>
<para>
After creation of the ticket, if the time defined here expires without any communication to the customer, either by email or phone, the ticket is escalated.
</para>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Escalation - Update Time</title>
<listitem>
<para>
If there is any customer followup via e-mail or the customer portal and recorded in the ticket, the escalation update time is reset. If there is no customer contact before the time defined here expires, the ticket is escalated.
</para>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Escalation - Solution Time</title>
<listitem>
<para>
If the ticket is not closed before the time defined here expires, the ticket is escalated.
</para>
</listitem>
</itemizedlist>
<para>
With 'Ticket lock after a follow-up', you can define if a ticket should be set to 'locked' to the old owner if a ticket that has been closed and later is re-opened. This ensures that a follow up for a ticket is processed by the agent that has previously handled that ticket.
</para>
<para>
The parameter for the system address specifies the email address that will be used for the outgoing tickets of this queue. There is also possibility to associate a queue with a salutation and a signature, for the email answers. For more detailed information, please refer to the sections <link linkend="adminarea-emailaddresses">email addresses</link>, <link linkend="adminarea-salutations">salutations</link> and <link linkend="adminarea-signatures">
signatures</link>.
</para>
<note>
<para>
As with agents, groups and customers, queues cannot be deleted, only deactivated, by setting the Valid option to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
</section>
<section id="adminarea-salutations-signatures-attachments-and-answers">
<title>Salutations, signatures, attachments and responses</title>
<section id="adminarea-salutations">
<title>Salutations</title>
<para>
A salutation is a text module for a response. Salutations can be linked to one or more queues, as described in the section about <link linkend="adminarea-queue">queues</link>. A salutation is used only if a ticket from a queue the salutation is linked to, is answered. To manage the different salutations of your system, use the "Salutations"
link of the admin area (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Salutation management</screeninfo>
<graphic srccredit="Adminarea salutation - screenshot" scale="40" fileref="screenshots/admin-salutation.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Salutation management.</emphasis>
</para>
<para>
After a default installation there is already one salutation available, "system standard salutation (en)".
</para>
<para>
To create a new salutation, press the button "Add salutation", provide the needed data and submit it (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Add a salutation</screeninfo>
<graphic srccredit="Adminarea salutation - screenshot" scale="40" fileref="screenshots/add-salutation.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a new salutation.</emphasis>
</para>
<para>
It is possible to use variables in salutations. When you respond to a ticket, the variable names will be replaced by their values.
</para>
<para>
The different variables you can use in responses are listed in the lower part of the salutation screen. If you use, for example, the variable <OTRS_LAST_NAME> the last name of the ticket's sender will be included in your reply.
</para>
<note>
<para>
As with other OTRS entities, salutations cannot be deleted, only deactivated by setting the Valid option to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
</section>
<section id="adminarea-signatures">
<title>Signatures</title>
<para>
Another text module for a response is the signature. Signatures can be linked to a queue, as described in the section about the <link linkend="adminarea-queue">queues</link>. Only if a signature is linked to a queue will it be included into the response text. Through the "Signatures" link of the Admin page, you can manage the signatures in your system (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Management of Signatures</screeninfo>
<graphic srccredit="Adminarea Signatures - screenshot" scale="40" fileref="screenshots/admin-signatures.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Signatures management.</emphasis>
</para>
<para>
After a fresh installation of OTRS, there is one predefined signature stored in your system, "system standard signature (en)".
</para>
<para>
To create a new signature, press the button "Add signature", provide the needed data and submit it (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Add a signature</screeninfo>
<graphic srccredit="Adminarea signature - screenshot" scale="40" fileref="screenshots/add-signature.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a new signature.</emphasis>
</para>
<para>
Like salutations, signatures can also contain dynamical content, such as the first and last name of the agent who answers the ticket. Here too, variables can be used to replace the content of the signature text for every ticket. See the lower part of the signatures screen for the variables which can be used. If you include the variable <OTRS_LAST_NAME> in a signature for example, the last name of the agent who answers the ticket will replace the variable.
</para>
<note>
<para>
As with salutations, signatures too cannot be deleted, only deactivated by setting the Valid option to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
</section>
<section id="adminarea-attachments">
<title>Attachments</title>
<para>
You can also optionally add one or more attachments for a response. If the response is selected, the attachments will be attached to the message composition window. If necessary, the agent can remove the attachment from an individual response before sending it to the customer.
</para>
<para>
Through the "Attachment" link of the Admin page, you can load the attachments into the database of the system (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Managing Attachments for Responses</screeninfo>
<graphic srccredit="Adminarea attachment - screenshot" scale="40" fileref="screenshots/admin-attachment.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Attachments management.</emphasis>
</para>
<para>
To create a new attachment, press the button "Add attachment", provide the needed data and submit it (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Add an Attachment</screeninfo>
<graphic srccredit="Adminarea signature - screenshot" scale="40" fileref="screenshots/add-attachment.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a new attachment.</emphasis>
</para>
<para>
If an attachment is stored it can be linked to one or more responses. Click on the "Attachment <-> Responses"
link of the Admin page (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Linking Attachments to Responses</screeninfo>
<graphic srccredit="Adminarea attachment response - screenshot" scale="40" fileref="screenshots/admin-attachment-response.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Linking Attachments to Responses.</emphasis>
</para>
<para>
To associate different attachments with a specific response and vice versa, click on the corresponding response name or attachment (see below the Figures 5.27 and 5.28, respectively).
</para>
<para>
<screenshot>
<screeninfo>Change Attachment relations for a Response</screeninfo>
<graphic srccredit="Adminarea responses and attachments - screenshot" scale="40" fileref="screenshots/response-attachment-relations.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Attachment relations for a Response.</emphasis>
</para>
<para>
<screenshot>
<screeninfo>Change Response relations for an Attachment</screeninfo>
<graphic srccredit="Adminarea responses and attachments - screenshot" scale="40" fileref="screenshots/response-attachment-relations2.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Response relations for an Attachment.</emphasis>
</para>
</section>
<section id="adminarea-Responses">
<title>Responses</title>
<para>
To speed up the answering of tickets and to standardize the look of answers, you can define responses in OTRS. A response can be linked to one or more queues and vice versa. In order to be able to use a response quickly, the different responses are displayed below every ticket in the QueueView or in "My Queues".
</para>
<para>
On a fresh OTRS installation, the "empty answer" response is defined for every queue. Clicking the "Responses" link on the Admin page brings you to the Responses management page (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Responses</screeninfo>
<graphic srccredit="Adminarea response - screenshot" scale="40" fileref="screenshots/admin-response.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Responses management.</emphasis>
</para>
<para>
To create a new response, click on the "Add response" button, provide the required data and submit it (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Responses</screeninfo>
<graphic srccredit="Adminarea response - screenshot" scale="40" fileref="screenshots/add-response.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a response.</emphasis>
</para>
<para>
To add/remove responses to one or more queues, click on the "Responses <-> Queues" link on the Admin page (see Figure below). You can also use filters to get information on a specific entity.
</para>
<para>
<screenshot>
<screeninfo>Manage Response-Queue relations</screeninfo>
<graphic srccredit="Adminarea response queue - screenshot" scale="40" fileref="screenshots/admin-response-queue.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Response-Queue relations management.</emphasis>
</para>
<para>
To define the different responses that will be available for a queue and vice versa, click on the corresponding response or queue (see below the Figures 5.32 and 5.33, respectively).
</para>
<para>
<screenshot>
<screeninfo>Change Queue relations for a Response</screeninfo>
<graphic srccredit="Adminarea response and queue - screenshot" scale="40" fileref="screenshots/responses-queues-relations.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Queue relations for a Response.</emphasis>
</para>
<para>
<screenshot>
<screeninfo>Change Response relations for a Queue</screeninfo>
<graphic srccredit="Adminarea response and queue - screenshot" scale="40" fileref="screenshots/responses-queues-relations2.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Response relations for a Queue.</emphasis>
</para>
<para>
The structure of a response is intuitive. It includes the salutation associated with the queue, then the text of the response, then the quoted ticket text, and finally the signature associated with the queue.
</para>
</section>
</section>
<section id="adminarea-auto-responses">
<title>Auto responses</title>
<para>
OTRS allows you to send automatic responses to customers on the occurence of certain events, such as the creation of a ticket in certain queue, reception of a follow-up message on a ticket, closure or rejection of a ticket, etc. To manage such responses, click the link "Auto responses" on the Admin page (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Auto Response management</screeninfo>
<graphic srccredit="Adminarea auto response - screenshot" scale="40" fileref="screenshots/admin-autoresponse.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Auto Response management.</emphasis>
</para>
<para>
To create an automatic response, click on the button "Add auto response", provide the needed data and submit it (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Adding an Auto Response</screeninfo>
<graphic srccredit="Adminarea auto response - screenshot" scale="40" fileref="screenshots/add-autoresponse.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding an Auto Response.</emphasis>
</para>
<para>
The subject and text of auto responses can be generated by variables, just as in signatures and salutations. If you insert, for example, the variable <OTRS_CUSTOMER_EMAIL[5]> into the body of the auto answer, the first 5 lines of the customer mail text will be inserted into the auto answer. You will find more details about the valid variables that can be used at the bottom of the screen shown in the Figure.
</para>
<para>
For every automatic answer, you can specify the event that should trigger it. The system events that are available
after a default installation are described in the Table 5-3.
</para>
<table id="table-of-autoanswer-types">
<title>Events for Auto answers</title>
<tgroup cols="2">
<thead>
<row>
<entry>
Name
</entry>
<entry>
Description
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
auto reply
</entry>
<entry>
Creation of a ticket in a certain queue.
</entry>
</row>
<row>
<entry>
auto reply/new ticket
</entry>
<entry>
Reopening of an already closed ticket, e.g. if a customer replies to such ticket.
</entry>
</row>
<row>
<entry>
auto follow up
</entry>
<entry>
Reception of a follow-up for a ticket.
</entry>
</row>
<row>
<entry>
auto reject
</entry>
<entry>
Automatic rejection of a ticket, done by the system.
</entry>
</row>
<row>
<entry>
auto remove
</entry>
<entry>
Deletion of a ticket, done by the system.
</entry>
</row>
</tbody>
</tgroup>
</table>
<note>
<para>
As with other OTRS entities, Auto responses too cannot be deleted, only deactivated, by setting the Valid option to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
<para>
To add an auto response to a queue, use the "Auto Response <-> Queues" link on the Admin page (see Figure below). All system events are listed for every queue, and an auto answer with the same event can be selected or removed via a listbox.
</para>
<para>
<screenshot>
<screeninfo>Manage Queue - Auto Response relations</screeninfo>
<graphic srccredit="Adminarea queue - auto response - screenshot" scale="40" fileref="screenshots/admin-autoresponse-queue.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Queue-Auto Response relations management.</emphasis>
</para>
<para>
To define the different auto responses that will be available for a queue, click on the corresponding queue name (see Figure below). It is also possible to edit an existing auto response - to do so, click on the reponse and edit in the same manner as editing a new auto response.
</para>
<para>
<screenshot>
<screeninfo>Change Auto Response relations for a Queue</screeninfo>
<graphic srccredit="Adminarea auto response and queue - screenshot" scale="40" fileref="screenshots/autoresponses-queues-relations.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Change Auto Response relations for a Queue.</emphasis>
</para>
</section>
<section id="adminarea-emailaddresses">
<title>Email addresses</title>
<para>
To enable OTRS to send emails, you need a valid email address to be used by the system. OTRS is capable of working with multiple email addresses, since many support installations need to use more than one. A queue can be linked to many email addresses, and vice versa. The address used for outgoing messages from a queue can be set when the queue is created. Use the "Email Addresses" link from the Admin page to manage all email addresses of the system (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Managing Email Addresses</screeninfo>
<graphic srccredit="Adminarea email - screenshot" scale="40" fileref="screenshots/admin-email.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: System Email Addresses management.</emphasis>
</para>
<para>
If you create a new mail address (see Figure below) you can select the queue or sub queue to be linked with it. This link enables the system to sort incoming messages via the address in the To: field of the mail into the right queue.
</para>
<para>
<screenshot>
<screeninfo>Adding a system Email Address</screeninfo>
<graphic srccredit="Adminarea email - screenshot" scale="40" fileref="screenshots/add-email.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Adding a system Email Address.</emphasis>
</para>
<note>
<para>
As with other OTRS entities, email addresses cannot be deleted, only deactivated by setting the Valid option to <emphasis>invalid</emphasis> or <emphasis>invalid-temporarily</emphasis>.
</para>
</note>
</section>
<section id="adminarea-notifications">
<title>Notifications</title>
<para>
OTRS allows notifications to be sent to agents and customers, on the occurence of certain events. Agents can set the system events for their own notifications via the <link linkend="user-preferences">preferences</link> link.
</para>
<para>
Through the "Agent Notifications" link on the Admin page, you can manage the notifications of your system (see Figure below). You can use filters to list only certain notifications.
</para>
<para>
<screenshot>
<screeninfo>Managing Notifications</screeninfo>
<graphic srccredit="Adminarea notifications - screenshot" scale="40" fileref="screenshots/admin-notification.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Notification management.</emphasis>
</para>
<para>
You can customize the subject and the text of the notifications. Click on the notification you want to change from the list, and its content will get loaded for editing (see Figure). Please note that there is a notification with the same name for each of the available languages.
</para>
<para>
<screenshot>
<screeninfo>Managing Notifications</screeninfo>
<graphic srccredit="Adminarea notifications - screenshot" scale="40" fileref="screenshots/customize-notification.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Customizing a Notification.</emphasis>
</para>
<para>
Just as with signatures and salutations, it is possible to dynamically create the content of a notification, by using special variables. You can find a list of variables at the bottom of the screen shown in the Figure.
</para>
<para>
It is also possible to create notifications based on events. You can specify in detail when and to whom you want such a notification to be sent. You can choose from a wide variety of parameters, such as: recipient group(s), agent(s), role(s), email address(es), type of event triggering the notification, ticket-type, state, priority, queue, lock, service, SLA, etc.
</para>
<para>
In order to see a list of all event based notifications, click on the link "Notifications (Event)" on the Admin page (see Figure).
</para>
<para>
<screenshot>
<screeninfo>Managing Event-based Notifications</screeninfo>
<graphic srccredit="Adminarea event based notifications - screenshot" scale="40" fileref="screenshots/admin-notification-eventbased.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Event based Notification management.</emphasis>
</para>
<para>
As shown in Figure, you can create a new notification by clicking on the Add button (see Figure).
</para>
<para>
<screenshot>
<screeninfo>Managing Event based Notifications</screeninfo>
<graphic srccredit="Adminarea event based notifications - screenshot" scale="40" fileref="screenshots/admin-notification-eventbased-new.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Registering an Event based Notification management.</emphasis>
</para>
<para>
Please note that the content of the event based notifications can also be dynamically created by using the special variables listed at the bottom of the screen shown in the Figure.
</para>
</section>
<section id="adminarea-smime">
<title>SMIME</title>
<para>
OTRS can process incoming S/MIME encoded messages and sign outgoing mails. Before this feature can be used, you need to activate it and change some <link linkend="Framework:Crypt::SMIME">config parameters</link> in the SysConfig.
</para>
<para>
The "S/MIME Certificates" link on the Admin page allows you to manage your S/MIME certificates (see Figure below). You can add or remove certificates, and also search through the SMIME data.
</para>
<para>
<screenshot>
<screeninfo>SMIME</screeninfo>
<graphic srccredit="Adminarea smime - screenshot" scale="40" fileref="screenshots/admin-smime.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: S/MIME management.</emphasis>
</para>
</section>
<section id="adminarea-pgp">
<title>PGP</title>
<para>
OTRS handles PGP keys, which allows you to encrypt/decrypt messages and to sign outgoing messages. Before this feature can be used, you need to activate it and change some <link linkend="Framework:Crypt::PGP"> config parameters </link> in the SysConfig.
</para>
<para>
Through the "PGP Keys" link on the Admin page, it is possible to manage the key ring of the user who shall be used for PGP with OTRS (see Figure below), e.g. the local OTRS user or the web server user. It is possible to add and remove keys and signatures, and you can search through all data in your key ring.
</para>
<para>
<screenshot>
<screeninfo>PGP</screeninfo>
<graphic srccredit="Adminarea pgp - screenshot" scale="40" fileref="screenshots/admin-pgp.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: PGP management.</emphasis>
</para>
</section>
<section id="adminarea-status">
<title>States</title>
<para>
Through the "States" link on the Admin page, you can manage the different ticket states you want to use in the system (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Managing ticket states</screeninfo>
<graphic srccredit="Adminarea states - screenshot" scale="40" fileref="screenshots/admin-states.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: State management.</emphasis>
</para>
<para>
After a default setup, there are some states defined:
</para>
<itemizedlist>
<listitem>
<para>
closed successful
</para>
</listitem>
<listitem>
<para>
closed unsuccessful
</para>
</listitem>
<listitem>
<para>
merged
</para>
</listitem>
<listitem>
<para>
new
</para>
</listitem>
<listitem>
<para>
open
</para>
</listitem>
<listitem>
<para>
pending auto close+
</para>
</listitem>
<listitem>
<para>
pending auto close-
</para>
</listitem>
<listitem>
<para>
pending reminder
</para>
</listitem>
<listitem>
<para>
removed
</para>
</listitem>
</itemizedlist>
<para>
Every state is linked to a type, which needs to be specified if a new state is created. By default the state types are:
</para>
<itemizedlist>
<listitem>
<para>
closed
</para>
</listitem>
<listitem>
<para>
merged
</para>
</listitem>
<listitem>
<para>
new
</para>
</listitem>
<listitem>
<para>
open
</para>
</listitem>
<listitem>
<para>
pending auto
</para>
</listitem>
<listitem>
<para>
pending reminder
</para>
</listitem>
<listitem>
<para>
removed
</para>
</listitem>
</itemizedlist>
</section>
<section id="adminarea-sysconfig">
<title>SysConfig</title>
<para>
The SysConfig link leads to the section where many OTRS configuration options are maintained.
</para>
<para>
The SysConfig link on the Admin page loads the graphical interface for system configuration (see Figure below). You can upload your own configuration files for the system, as well as backup all your current settings into a file. Almost all configuration parameters of the OTRS framework and installed applications can be viewed and changed through this interface. Since all configuration parameters are sorted into groups and sub groups, it is possible to navigate quickly through the multitude of the parameters. It is also possible to perform a full-text search through all the configuration parameters.
</para>
<para>
<screenshot>
<screeninfo>The graphical interface for system configuration (SysConfig)</screeninfo>
<graphic srccredit="Adminarea sysconfig - screenshot" scale="40" fileref="screenshots/admin-sysconfig.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: The graphical interface for system configuration (SysConfig).</emphasis>
</para>
<para>
The graphical interface for system configuration is described in more detail in the chapter <link linkend="sysconfig">
"Configuring the system through the web interface"</link>.
</para>
</section>
<section id="adminarea-postmasterpop3-account">
<title>Using mail accounts</title>
<para>
There are several possibilities to transport new emails into the ticket system. One of them is the <link linkend="email-receiving-cmd">otrs.PostMaster.pl module</link> that pipes the mails directly into the system. Another possibility is the use of mail accounts which can be administrated through the web interface. The "PostMaster Mail Accounts" link on the Admin page loads the management console for the mail accounts (see Figure below). OTRS supports the mail protocols: POP3, POP3S, IMAP and IMAPS.
</para>
<para>
<screenshot>
<screeninfo>Mail account management</screeninfo>
<graphic srccredit="Adminarea postmaster - screenshot" scale="40" fileref="screenshots/admin-mailaccount.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Mail account management.</emphasis>
</para>
<para>
See the section about the <link linkend="email-receiving-pop3">PostMaster mail accounts</link> for more details.
</para>
</section>
<section id="adminarea-postmasterfilter">
<title>Filtering incoming messages</title>
<para>
OTRS has the capability to filter incoming messages, as reflected by incoming messages being sorted automatically into queues, or spam mails being moved into a specific queue. It is irrelevant whether <filename>PostMaster.pl</filename> or mail accounts are used to get messages into the ticket system. Filter rules can be created through the link "PostMaster Filter" on the Admin page (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Managing filter rules for incoming messages</screeninfo>
<graphic srccredit="Adminarea postmasterfilter - screenshot" scale="40" fileref="screenshots/admin-postmasterfilter.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: PostMaster filter management.</emphasis>
</para>
<para>
A filter consists of one or more criteria that must match for the defined actions to be executed on the email. Filter criteria may be defined for the headers or the body of an email, e.g. search for specific header entries or strings in the body, even regular expressions are allowed. All actions for a filter rule are triggered by X-OTRS headers, which are inserted if the filter criteria match. The ticket system evaluates the inserted X-OTRS headers and executes the specific actions. X-OTRS headers can be used to sort an incoming message into a specific queue, change the priority of the message or ignore the message and not deliver it to the system. The Table 5-4 lists the different X-OTRS headers and their meaning.
</para>
<para>
Note: You also can use X-OTRS-FollowUp-* headers for follow up emails.
</para>
<table id="table-of-x-otrs-headers">
<title>Function of the different X-OTRS-headers</title>
<tgroup cols="3">
<thead>
<row>
<entry>
Name
</entry>
<entry>
Possible values
</entry>
<entry>
Description
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
X-OTRS-Priority:
</entry>
<entry>
1 very low, 2 low, 3 normal, 4 high, 5 very high
</entry>
<entry>
Sets the priority of a ticket.
</entry>
</row>
<row>
<entry>
X-OTRS-Queue:
</entry>
<entry>
Name of a queue in the system.
</entry>
<entry>
Sets the queue where the ticket shall be sorted. If set in X-OTRS header, all other filter rules that try to sort a ticket into a specific queue are ignored.
</entry>
</row>
<row>
<entry>
X-OTRS-Lock:
</entry>
<entry>
lock, unlock
</entry>
<entry>
Sets the lock state of a ticket.
</entry>
</row>
<row>
<entry>
X-OTRS-Ignore:
</entry>
<entry>
Yes or True
</entry>
<entry>
If this X-OTRS header is set to "Yes", the incoming message will completely be ignored and never delivered to the system.
</entry>
</row>
<row>
<entry>
X-OTRS-State:
</entry>
<entry>
new, open, closed successful, closed unsuccessful, ...
</entry>
<entry>
Sets the next state of the ticket.
</entry>
</row>
<row>
<entry>
X-OTRS-State-PendingTime:
</entry>
<entry>
e. g. 2010-11-20 00:00:00
</entry>
<entry>
Sets the pending time of a ticket (you also should sent a pending state via X-OTRS-State).
</entry>
</row>
<row>
<entry>
X-OTRS-Type:
</entry>
<entry>
default (depends on your setup)
</entry>
<entry>
Sets the type of a ticket (if Ticket::Type support is active).
</entry>
</row>
<row>
<entry>
X-OTRS-Service:
</entry>
<entry>
(depends on your setup)
</entry>
<entry>
Sets the service of a ticket (if Ticket::Service support is active).
</entry>
</row>
<row>
<entry>
X-OTRS-SLA:
</entry>
<entry>
(depends on your setup)
</entry>
<entry>
Sets the SLA of a ticket (if Ticket::Service support is active).
</entry>
</row>
<row>
<entry>
X-OTRS-CustomerUser:
</entry>
<entry>
CustomerUser
</entry>
<entry>
Sets the customer user for the ticket.
</entry>
</row>
<row>
<entry>
X-OTRS-CustomerNo:
</entry>
<entry>
CustomerNo
</entry>
<entry>
Sets the customer ID for this ticket.
</entry>
</row>
<row>
<entry>
X-OTRS-SenderType:
</entry>
<entry>
agent, system, customer
</entry>
<entry>
Sets the type of the ticket sender.
</entry>
</row>
<row>
<entry>
X-OTRS-ArticleType:
</entry>
<entry>
email-external, email-internal, email-notification-ext, email-notification-int, phone, fax, sms, webrequest, note-internal, note-external, note-report
</entry>
<entry>
Sets the article type for the incoming ticket.
</entry>
</row>
<row>
<entry>
X-OTRS-DynamicField-<DynamicFieldName>:
</entry>
<entry>
Depends on Dynamic Field configuration (Text: Notebook, Date: 2010-11-20 00:00:00, Integer: 1)
</entry>
<entry>
Saves an additional info value for the ticket on <DynamicFieldName> Dynamic Field.
</entry>
</row>
<row>
<entry>
X-OTRS-Loop:
</entry>
<entry>
True
</entry>
<entry>
If this X-OTRS header is set, no auto answer is delivered to the sender of the message (mail loop protection).
</entry>
</row>
</tbody>
</tgroup>
</table>
<para>
A name must be specified for every filter rule. Filter criteria can be specified in the section "Filter Condition". Choose via the listboxes for "Header 1", "Header 2" and so on for the parts of the messages where you would like to search, and specify on the right side the values you wish to filter on. In the section "Set Email Headers", you can choose the actions that are triggered if the filter rules match. You can select for "Header 1", "Header 2" and so on to select the X-OTRS-Header and set the associated values (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Addin filter rules for incoming messages</screeninfo>
<graphic srccredit="Adminarea postmasterfilter - screenshot" scale="40" fileref="screenshots/add-postmasterfilter.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Add a PostMaster filter.</emphasis>
</para>
<example id="sort-mails-into-junk">
<title>Sort spam mails into a specific queue</title>
<para>
A useful filter rule could be to let OTRS automatically move mails marked for spam with a spam detection tool such as SpamAssassin, into the "Junk" queue. SpamAssassin adds the "X-Spam-Flag" header to every checked mail. When the mail is marked as spam, the Header is set to "Yes". So the filter criteria would be "X-Spam-Flag: Yes". To create a filter rule with this criteria you can insert the name as, for example, "spam-mails". In the section for "Filter Condition", choose "X-Spam-Flag:" for "Header 1" from the listbox. Insert "Yes" as value for this header. Now the filter criteria is specified. To make sure that all spam mails get directed into the "Junk" queue, choose in the section for "Set Email Headers", the "X-OTRS-Queue:" entry for "Header 1". Specify "Junk" as value for this header. Finally add the new filter rule to activate it for new messages into the system.
</para>
</example>
<para>
There are additional modules, that can be used to <link linkend="email-receiving-filter">filter incoming messages</link> more specifically. These modules might be useful on larger, more complex systems.
</para>
</section>
<section id="adminarea-genericagent">
<title>Executing automated jobs with the GenericAgent</title>
<para>
The GenericAgent is a tool to execute tasks automatically. In its absence such tasks would need to be done by a human person, a real agent. The GenericAgent, for example, can close or move tickets, send notifications on escalated tickets, etc.
</para>
<para>
Click the link "GenericAgent" on the Admin page (see Figure below). A table with currently automated jobs is displayed which can be edited to switch to executing jobs manually, or removing them.
</para>
<para>
<screenshot>
<screeninfo>Job list for the GenericAgent</screeninfo>
<graphic srccredit="Adminarea genericagent - screenshot" scale="40" fileref="screenshots/admin-genericagent.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Job list for the GenericAgent.</emphasis>
</para>
<para>
Click the "Add job" button to create a new job. You first need to supply a name for the job, as also the times when the job should be executed. Different criteria to select the tickets to work on and the new properties of those tickets can also be set (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Creating a job for the GenericAgent</screeninfo>
<graphic srccredit="Adminarea genericagent - screenshot" scale="40" fileref="screenshots/add-genericagent-job.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Creating a job for the GenericAgent.</emphasis>
</para>
<para>
On completing the job creation, all affected tickets by the job are listed. This list helps you verify that the job has the expected behavior. No changes are made to these tickets yet. The job will actually be activated only when it is saved into the job list.
</para>
</section>
<section id="adminarea-adminemail">
<title>Admin email</title>
<para>
OTRS administrators can send messages to specific users or groups. The "Admin Notification" link on the Admin page opens the screen where the agents and groups that should be notified can be selected (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Admin notification</screeninfo>
<graphic srccredit="Adminarea email - screenshot" scale="40" fileref="screenshots/send-admin-notification.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Admin notification.</emphasis>
</para>
<para>
It is possible to specify the sender, subject and body text of the notification. You can also select the agents, groups and roles who should receive the message.
</para>
</section>
<section id="adminarea-session-management">
<title>Session management</title>
<para>
You can see all logged in users and their session details by clicking the "Session Management" link in the admin area (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Session management</screeninfo>
<graphic srccredit="Adminarea sessionmanagement - screenshot" scale="40" fileref="screenshots/admin-sessionmanagement.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Session management.</emphasis>
</para>
<para>
Some statistics about all active sessions are displayed, e.g. how many agents and customer users are logged in, number of active sessions. Any individual session can be removed by clicking on the <emphasis>Kill this session</emphasis> link on the right-hand side of the list. You also have the option to <emphasis>Kill all sessions</emphasis>, which can be useful if you'd like to bring the system down. Detailed information for every session is available, too (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>Session details</screeninfo>
<graphic srccredit="Adminarea session management - screenshot" scale="40" fileref="screenshots/admin-session-details.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Session details.</emphasis>
</para>
</section>
<section id="adminarea-system-log">
<title>System Log</title>
<para>
The "System Log" link on the Admin page shows the log entries of the system, reverse chronologically sorted with most recent first (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>System Log</screeninfo>
<graphic srccredit="Adminarea syslog - screenshot" scale="40" fileref="screenshots/admin-syslog.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: System Log.</emphasis>
</para>
<para>
Each line in the log contains a time stamp, the log priority, the system component and the log entry itself.
</para>
<note>
<para>
System logs are available via the web interface only on Linux / Unix systems. On Windows systems, you can see the logs using a text editor and opening the file <filename>[install_dir]otrs\var\log\otrs.log</filename>.
</para>
</note>
</section>
<section id="adminarea-selectbox">
<title>SQL queries via the SQL box</title>
<para>
The "SQL Box" link on the Admin page opens a screen that lets you query the content of the tables in the OTRS database (see Figure below). It is not possible to change the content of the tables, only select queries are allowed.
</para>
<para>
<screenshot>
<screeninfo>SQL Box</screeninfo>
<graphic srccredit="Adminarea selectbox - screenshot" scale="40" fileref="screenshots/admin-selectbox.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: SQL Box.</emphasis>
</para>
</section>
<section id="adminarea-package-manager">
<title>Package Manager</title>
<para>
Using the "Package Manager" link on the Admin page, you can install and manage packages that extend the functionality of OTRS (see Figure below). See the <link linkend="application">Additional applications</link> section for a discussion on the extensions that are available from the OTRS repositories.
</para>
<para>
<screenshot>
<screeninfo>Package Manager</screeninfo>
<graphic srccredit="Adminarea packagemanager - screenshot" scale="40" fileref="screenshots/admin-packagemanager.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: Package Manager.</emphasis>
</para>
<para>
The Package Manager shows the OTRS addon packages you currently have installed on your server, together with their version numbers.
</para>
<para>You can install packages from a remote host by selecting the repository in the <emphasis>Online Repository</emphasis> section, and clicking the <emphasis>Update repository information</emphasis> button. The available packages are displayed in the corresponding table. The right side of the screen shows the available packages. To install a package, click on <emphasis>Install</emphasis>. After installation, the package is displayed in the <emphasis>Local Repository</emphasis> section.
</para>
<para>
To upgrade an installed package, the list of available packages in the online repository will show <emphasis>Upgrade</emphasis> in the Action column for any package that has a higher version than the one locally installed. Just click Upgrade and it will install the upgrade on your system.
</para>
<para>
In some cases, such as when your OTRS system is not connected to the Internet, you can also install packages you have downloaded to a local disk. Click the <emphasis>Browse</emphasis> button on the Actions side bar, and select the .opm file on your disk. Click <emphasis>Open</emphasis> and then <emphasis>Install Package</emphasis>. After installation the package is displayed in the <emphasis>Local Repository</emphasis> section. You can use the same steps for updating a package that is already installed.
</para>
<para>
In special cases, you might want to configure the Package Manager, e.g., to use a proxy or to use a local repository. Just take a look at the available options in SysConfig under <link linkend="Framework:Core::Package">Framework:Core::Package</link>.
</para>
</section>
<section id="adminarea-webservices">
<title>Web Services</title>
<para>
The Web Services link leads to the graphical interface where web services (for the OTRS
Generic Interface) are created and maintained (see Figure below).
</para>
<para>
<screenshot>
<screeninfo>The graphical interface for web services</screeninfo>
<graphic srccredit="Adminarea webservices - screenshot" scale="40" fileref="screenshots/genericinterface-webservice-overview.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: The graphical interface for web services.</emphasis>
</para>
<para>
The graphical interface for web services configuration is described in more detail in the
section <link linkend="webservice_gui">"Web Service Graphical Interface"</link>.
</para>
</section>
<section id="adminarea-dynamicfields">
<title>Dynamic Fields</title>
<para>
Dynamic Fields is the place where you setup an manage custom fields for tickets and
articles (see figure below).
</para>
<para>
<screenshot>
<screeninfo>Dynamic fields overview screen</screeninfo>
<graphic srccredit="Adminarea dynamicfields - screenshot" scale="40" fileref="screenshots/dynamicfields-overview-filled.png"></graphic>
</screenshot>
</para>
<para>
<emphasis>Figure: The dynamic fields overview screen with some dynamic fields.</emphasis>
</para>
<para>
The dynamic fields configuration is described in more detail in the section
<link linkend="dynamicfields-configuration">"Dynamic Fields Configuration"</link>.
</para>
<para>
Each dynamic field type has its own configuration settings and therefore its own
configuration screen.
</para>
<note>
<para>
In the OTRS framework, dynamic fields can only be linked to tickets and articles by default,
but they can be extended to other objects as well.
</para>
</note>
</section>
</chapter>
|