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
|
<?xml version='1.0' encoding='ISO-8859-1'?>
<!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.12 2006/04/29 22:14:53 ck Exp $ -->
<chapter id="adminarea">
<title>The admin area of OTRS</title>
<sect1 id="adminarea-general">
<title>Basics</title>
<para>
The admin area of OTRS is the central part in the web interface for the
OTRS administrator. All important settings for the system can be done,
changed and viewed via this module.
</para>
<para>
The admin area is reachable via the "Admin" link in the navbar of the agent
interface. The link is only displayed, if you are logged in as OTRS
administrator or if you are a member of the admin group. After a default
installation you can log in as OTRS admin with the username root@localhost
and the passworr root.
</para>
<warning>
<para>
Please change this password as fast as possible via the
<link linkend="user-preferences">
user preferences
</link>
page, because this password is set per default on new OTRS systems.
</para>
</warning>
<para>
<screenshot>
<screeninfo>The admin area of OTRS</screeninfo>
<graphic srccredit="Adminarea - screenshot" scale="40" fileref="screenshots/adminarea.png"></graphic>
</screenshot>
</para>
</sect1>
<sect1 id="adminarea-user-groups-and-roles">
<title>User, groups and roles</title>
<sect2 id="adminarea-user">
<title>User</title>
<para>
Via the link "User" the user management of OTRS can be reached. It is
possible to add, change or deactivate user accounts. Also some basic
setting for a user account can be adjusted, e.g. the language for the web
interface or the theme.
</para>
<para>
<screenshot>
<screeninfo>User account management</screeninfo>
<graphic srccredit="Adminarea user management - screenshot" scale="40" fileref="screenshots/admin-users.png"></graphic>
</screenshot>
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
user. To deactivate a user account set it to
"invalid" or "invalid-temporarily".
</para>
</note>
<para>
After a new user has been created the user must be added to one or more
groups or roles. You will be redirected automatically to the screen for the
group and user management when a new accounted has been created.
</para>
</sect2>
<sect2 id="adminarea-groups">
<title>Groups</title>
<para>
Every user account should at least belong to one group. The group
management can bereached via the "Groups" link.
</para>
<para>
<screenshot>
<screeninfo>Gruppenverwaltung in OTRS</screeninfo>
<graphic srccredit="Adminarea group management - screenshot" scale="40" fileref="screenshots/admin-groups.png"></graphic>
</screenshot>
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
group. To deactivate a group set it to
"invalid" or "invalid-temporarily".
</para>
</note>
<para>
After a default installation already four groups are available in the
system.
</para>
<para>
<table id="table-of-groups-after-installation">
<title>Default groups after OTRS has been installed</title>
<tgroup cols="2">
<thead>
<row>
<entry>
Group
</entry>
<entry>
Description
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
admin
</entry>
<entry>
Group for the users who should have admin rights in the system.
After the system has been installed only the user "root@localhost" is
in this group.
</entry>
</row>
<row>
<entry>
faq
</entry>
<entry>
Users in this group may create and change articles in the FAQ
system. After the system has been installed no user is in this
group.
</entry>
</row>
<row>
<entry>
stats
</entry>
<entry>
Users in this group may access the stats module of OTRS and
generate statistics. After the system has been installed only
"root@localhost" belongs to this group.
</entry>
</row>
<row>
<entry>
users
</entry>
<entry>
This is the group where your agents should belong to and have
read and write access. If users are in this group and have write
rights they can use all functions of the ticket system. After the
system has been installed this group is empty.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
<para>
To add a user to a group or to change the group settings of a user the link
"Users <-> Groups" can be used.
</para>
<para>
<screenshot>
<screeninfo>User group management</screeninfo>
<graphic srccredit="Adminarea groups and users - screenshot" scale="40" fileref="screenshots/admin-users-and-groups.png"></graphic>
</screenshot>
</para>
<para>
A overview of all groups and users in the system is displayed in the lower
part of the screen. If you want to change the group settings of a user just
click on the username. To change the users in a group just click on the
group that you want to change.
</para>
<para>
To setup the rights for a user very graduately there are some rights that
can be set for a user account. After a default installation the follwoing
rights are available.
</para>
<para>
<table id="table-of-group-permissions-after-installation">
<title>Rights in the user groups of OTRS</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 and entries or 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 a ticket or entrie in queues or
areas that belong to this groups.
</entry>
</row>
<row>
<entry>
rw
</entry>
<entry>
Full read and write access on all tickets or entries in the
queues or areas that belong to this group.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</sect2>
<sect2 id="adminarea-roles">
<title>Roles</title>
<para>
Roles are a very powerful and helpful feature to manage and change the
access rights of many users very simply and quickly. On big and complex
systems with many users, groups and queues this feature is very useful and
helps to save time.
</para>
<para>
To explaine the advantages of the role feature imagine that you have a
system with 100 users. 90 users have access to a queue called "support"
that contains some sub queues. All support requests are handled through
this queue. All other queues of the system are not accessible for the 90
users. The other 10 users may access all queues of the system, they are not
restricted only to the support queue. they dispatch tickets, watch the raw
queue and move spam messages into the "junk" queue. Some day the company
opens a new department that sells products. Offerings, confirmations of
offerings, bills, e.g. must be created and some of the agents in your
system shall do this via OTRS. The different users have to get access to
the new queues that must be created. Because it would take a long time to
change the access rights for the different users manualy, roles can be
created that define the different access levels. Then the users can be
added to one or more roles and the user rights get for this user accounts
get changed. If a new user account is created it is also possible to add
this account to one or more roles.
</para>
<para>
<screenshot>
<screeninfo>Role management in OTRS</screeninfo>
<graphic srccredit="Adminarea roles - screenshot" scale="40" fileref="screenshots/admin-roles.png"></graphic>
</screenshot>
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
role. To deactivate a role set it to "invalid" or
"invalid-temporarily".
</para>
</note>
<para>
<screenshot>
<screeninfo>Adding users to roles</screeninfo>
<graphic srccredit="Adminarea roles users - screenshot" scale="40" fileref="screenshots/admin-roles-users.png"></graphic>
</screenshot>
</para>
<para>
<screenshot>
<screeninfo>Adding groups to roles</screeninfo>
<graphic srccredit="Adminarea roles groups - screenshot" scale="40" fileref="screenshots/admin-roles-groups.png"></graphic>
</screenshot>
</para>
<para>
To define the different access rights for a role the links
"Roles <-> Users" bzw. "Roles <-> Groups" can be used.
</para>
</sect2>
</sect1>
<sect1 id="customer-user-and-groups">
<title>Customer users and customer groups</title>
<sect2 id="adminarea-customeruser">
<title>Customer users</title>
<para>
OTRS supports different types of users. The link "Customer Users" can be
used to mange the accounts of your customers. A customer can log in the
system via the customer interface (customer.pl). The customer interface
enables a user to manage own tickets and change the own account settings.
Also a customer user is needed for the ticket history in the system.
</para>
<para>
<screenshot>
<screeninfo>Customer user management in OTRS</screeninfo>
<graphic srccredit="Adminarea customer - screenshot" scale="40" fileref="screenshots/admin-customer.png"></graphic>
</screenshot>
</para>
<para>
You can search for a specific customer user in the database and change the
customer user backend. More infos about customer user backends are available
in the chapter about
<link linkend="external-backends">
external backends
</link>.
</para>
<para>
You can create new customer user accounts. All input fields that are marked
through an asterisk (*) have to contain values. Very important is to
specify a account name and a password for the new user to enable that this
user can log in the system. Also you have to specifiy a customer ID
("Customer#"). This ID needs the system to identify the user and the
tickets of this user. Ffor example the mail address of the user can be
specified for Customer#, because a mail address is explicit.
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
customer user. To deactivate a customer user account set it to
"invalid" or "invalid-temporarily".
</para>
</note>
</sect2>
<sect2 id="adminarea-customer-user-groups">
<title>Customer groups</title>
<para>
Customer users can also be added to a group. this feature might be useful,
if you want to add some customer users of the same company that shall only
have access to one or some queues through the customer interface. First
create via the
<link linkend="adminarea-groups">
group management module
</link>
the group, that shall contain all customer users of the company. Then
create the
<link linkend="adminarea-queue">
queues
</link>
and select the new group for this 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>
either via the graphical configuration frontend of OTRS or via inserting
this parameter into your <filename>Kernel/Config.pm</filename> file.
The parameter
<link linkend="Framework:Frontend::Customer:CustomerGroupAlwaysGroups">
CustomerGroupAlwaysGroups
</link>
you can specify the groups for a new added customer user, the new account
will be added to this group automatically.
</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>
Through the link "Customer Users <-> Groups" you can manage which
customer user shall belong to the different groups.
</para>
</sect2>
</sect1>
<sect1 id="adminarea-queue">
<title>Queues</title>
<para>
Through the link "Queue" you can manage the
<link linkend="what-is-a-queue">
queues
</link>
of your system. In a new installed system the "Junk", "Misc", "Postmaster"
and "Raw" queues already exist in your system. "Raw" is the default queue, all
incomming messages are stored in this queue if no filter rules are defined.
The "Junk" queue can be used to store spam messages.
</para>
<para>
<screenshot>
<screeninfo>Queue management in OTRS</screeninfo>
<graphic srccredit="Adminarea queue - screenshot" scale="40" fileref="screenshots/admin-queue.png"></graphic>
</screenshot>
</para>
<para>
The form on the right site of the screen lets you add a new queue.
You can specify the name and the group who should use the queue and if you
want the new queue to be a sub queue of another already existing queue.
</para>
<para>
If a ticket was locked by an agent, you can specify a time interval when
the ticket is unlocked automatically by the system.
</para>
<para>
If you specify a escalation time tickets which are older than this time
block newer tickets to and the escalated tickets have to be processed
first. This setting is usefull to force the processing of older tickets,
new tickets don't apear in the QueueView if a ticket is escalated.
</para>
<para>
Also you can specify that the old owner of a processed ticket is
automatically the owner again, if a followup of the old ticket is send to
the ticket system. This feature makes sure that a folowup for a ticket is
first shown to the origianl owner of the ticket who already knows the facts
of this ticket.
</para>
<para>
The parameter for the system address sets the mail address that is used for
the outgoing tickets of this queue. With the salutation and signature
parameter the used values for the new queue can be selected. The sections
<link linkend="adminarea-emailaddresses">
email addresses
</link>
<link linkend="adminarea-salutations">
salutations
</link>
and
<link linkend="adminarea-signatures">
signatures
</link>
explained more detailed this different parameters.
</para>
<para>
The different customer info parameters let you specify the queue events when
a notification to a customer is send.
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
queue. To deactivate a queue set it to
"invalid" or "invalid-temporarily".
</para>
</note>
<para>
All described config settings for new queues are also valid for sub queues.
</para>
</sect1>
<sect1 id="adminarea-salutations-signatures-attachments-and-answers">
<title>Salutations, signatures, attachments and responses</title>
<para>
To accelerate answering tickets and to standardize the look of answers you
can define responses in OTRS. A response can be linked to one or more
queues, a queue can be linked to one or more responses. To make it possible
to use a response quickly the different responses are displayed below of
every ticket in the QueueVie or in "My Queues".
</para>
<para>
After a a default installation of the system the "empty answer" response is
defined for every queue. Through the "Responses" link it is possible to
manage the different responses.
</para>
<para>
<screenshot>
<screeninfo>Responses</screeninfo>
<graphic srccredit="Adminarea response - screenshot" scale="40" fileref="screenshots/admin-response.png"></graphic>
</screenshot>
</para>
<para>
<screenshot>
<screeninfo>Zuweisung einer Antwortvorlage zu einer Queue</screeninfo>
<graphic srccredit="Adminarea response queue - screenshot" scale="40" fileref="screenshots/admin-response-queue.png"></graphic>
</screenshot>
</para>
<para>
To add or remove response to one or more queues the "Responses <-> Queues"
link can be used.
</para>
<para>
If you use a response for example through the QueueView you can see, that
not only the text of the response and the ticket text is displayed but also
a salutation and a signature. A response is assembled by different text
modules. The signature and the salutation of the queue where the ticket is
stored are two of the text modules of the response and also the original
ticket text and, if defined, the text of the response is included. The
different text modules are ordered that first the salutation is displayed,
then the quoted ticket text then the text of the response and after all
these text modules the signature is shown.
</para>
<sect2 id="adminarea-salutations">
<title>Salutations</title>
<para>
A text module for a response is the salutation. Salutations can be linked
to one or more queues as described in the section about
<link linkend="adminarea-queue">
queues
</link>
. Only if a salutation is linked to a queue it is used if a ticket from
this queue is answered. The "Salutations" link lets you manage the
different salutations of your system.
</para>
<para>
<screenshot>
<screeninfo>Salutation management</screeninfo>
<graphic srccredit="Adminarea salutation - screenshot" scale="40" fileref="screenshots/admin-salutation.png"></graphic>
</screenshot>
</para>
<para>
After a default installation there are already two salutations available in
the system, "system standard salutation (de/buiss)" and
"system standard salutation (en)".
</para>
<para>
Because the content of a salutation can be created dynamicaly, for example
for things that change for every ticket (e.g. the name or mail address of
the sender), it is possible to use variables in salutations. The text which
is saved in the variables will be placed in the response text if you reply
to a ticket.
</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 lastname of the sender of the ticket will be
included in your reply.
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
salutation. To deactivate a salutation set it to
"invalid" or "invalid-temporarily".
</para>
</note>
</sect2>
<sect2 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 it will be included into the
response text. Through "Signatures" link you can manage the signatures in
your system.
</para>
<para>
<screenshot>
<screeninfo>Management of signatures</screeninfo>
<graphic srccredit="Adminarea signatures - screenshot" scale="40" fileref="screenshots/admin-signatures.png"></graphic>
</screenshot>
</para>
<para>
After a default installation of OTRS there are already two signatures
stored in your system, "system standard signature (de/buiss)" and
"system standard signature (en)".
</para>
<para>
Like salutations signatures also can contain dynamical content (e.g. the first and
last name of the agent who answers the ticket), also variables 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 be included in the signature
text.
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
signature. To deactivate a signature set it to
"invalid" or "invalid-temporarily".
</para>
</note>
</sect2>
<sect2 id="adminarea-attachments">
<title>Attachments</title>
<para>
Another optional part of a response can be one ore more attachments. The
attachment will be send if the response is used, but with checkboxes it is
possible to deactivate the attachment in the answer screen for tickets.
</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>
Through the "Attachment" link it is possible to load the attachments into
the database of the system. If an attachment is stored it can be linked to
one or more responses, just follow the "Attachment <-> Responses"
link.
</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>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
attachment. To deactivate a attachment set it to
"invalid" or "invalid-temporarily".
</para>
</note>
</sect2>
</sect1>
<sect1 id="adminarea-auto-responses">
<title>Auto answers</title>
<para>
OTRS can send auto answers to customer users. Auto answers are send if
special events happen, e.g. if a new ticket is created in a queue, if a
followup for a ticke is receifed, if a ticket is closed or rejected by the
system. Through the link "Auto answers" the auto answers of the system can
be managed. If you create a auto answer you can select the event that
should trigger the auto answer. The following system events are available
after a default installation.
</para>
<para>
<screenshot>
<screeninfo>Verwaltung von automatischen Antworten</screeninfo>
<graphic srccredit="Adminarea auto response - screenshot" scale="40" fileref="screenshots/admin-autoresponse.png"></graphic>
</screenshot>
</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>
This event is triggered if a new ticket in a queue is created.
</entry>
</row>
<row>
<entry>
auto reply/new ticket
</entry>
<entry>
This event is triggered if a already closed ticket with a new
ticketnumber is reopened, e.g. if a customer replyes to such
a ticket.
</entry>
</row>
<row>
<entry>
auto follow up
</entry>
<entry>
This event is triggered if a followup for a ticket is received by
the system.
</entry>
</row>
<row>
<entry>
auto reject
</entry>
<entry>
This event is triggered if the system rejects a ticket
automatically.
</entry>
</row>
<row>
<entry>
auto remove
</entry>
<entry>
This event is triggered if a ticket is removed by the system.
</entry>
</row>
</tbody>
</tgroup>
</table>
<para>
The subjectline and the text of auto answers can also be dynamicly generated
by variables, like for signatures or salutations. If you insert the
variable <OTRS_CUSTOMER_EMAIL[5]> for example into the body of the
autoanswer, the first 5 lines of the customer mailtext is inserted into the
auto answer. See the lower part of the auto answer screen for more details
about the variables that can be used.
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
auto answer. To deactivate a auto answer set it to
"invalid" or "invalid-temporarily".
</para>
</note>
<para>
<screenshot>
<screeninfo>Adding an auto answer to a queue</screeninfo>
<graphic srccredit="Adminarea auto response queue - screenshot" scale="40" fileref="screenshots/admin-autoresponse-queue.png"></graphic>
</screenshot>
</para>
<para>
To add an auto answer to a queue follow the "Auto Answer <-> Queues"
link in the admin area. All system events are listed for every queue and a
auto answer with the same event can be selected or removed via a listbox.
</para>
</sect1>
<sect1 id="adminarea-emailaddresses">
<title>Email addresses</title>
<para>
To enable OTRS to send emails you need at least a valid email address used
by the system. Because many setups need more than one mail addresses OTRS is
able to work with many mail addresses at the same time. At least one mail
address can be specified for a queue, but it is also possible to specify
the same address for more than one queue. That means that more than one
address can be used to send mails from outsite to a queue, but one address
has to be specified for the outgoing mails of a queue. The address, that
shall be used for outgoing messages of a queue, can be set if the queue is
created. Follow the "Email Addresses" link to manage all mal addresses of
the system.
</para>
<para>
<screenshot>
<screeninfo>Managing the mail addresses of the system</screeninfo>
<graphic srccredit="Adminarea email - screenshot" scale="40" fileref="screenshots/admin-email.png"></graphic>
</screenshot>
</para>
<para>
If you create a new mail address you can select the queue or sub queue that
shall be linked with the new address. This link enables the system to sort
incomming messages via the address in the To: field of the mail into the
right queue.
</para>
<note>
<para>
To keep the consistency of the data for OTRS it is not possible to delete a
mail address. To deactivate a mail address set it to
"invalid" or "invalid-temporarily".
</para>
</note>
</sect1>
<sect1 id="adminarea-notifications">
<title>Notifications</title>
<para>
Via their
<link linkend="user-preferences">
preferences
</link>
agents and customers can select the system events for notifications.
</para>
<para>
<screenshot>
<screeninfo>Managing ntifications</screeninfo>
<graphic srccredit="Adminarea notifications - screenshot" scale="40" fileref="screenshots/admin-notification.png"></graphic>
</screenshot>
</para>
<para>
Through the "Notification" link in the adminarea you can manage the
notifications of your system. You can customize the subject and the text of
the notifications. Just select the notification you want to change from the
listbox and load the content of the notification via the "Change" button.
The name of the notification tells you for which language the notification
is used, which event triggers the notification and if the notification is
send to an agent or a customer.
</para>
<para>
Like signatures or salutation it is possible to create the content of a
notification dynamicly by using special variables. In the lower part of the
notification screen you can find a list of all variables that can used for
notifications.
</para>
</sect1>
<sect1 id="adminarea-smime">
<title>SMIME</title>
<para>
Since OTRS 2.0 it is possible to decode and encode SMIME messages. Also you
can 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>
e.g. with the
<link linkend="adminarea-sysconfig">
graphical configuration frontend
</link>
to the needs of your operating system.
</para>
<para>
<screenshot>
<screeninfo>SMIME</screeninfo>
<graphic srccredit="Adminarea smime - screenshot" scale="40" fileref="screenshots/admin-smime.png"></graphic>
</screenshot>
</para>
<para>
The "SMIME" link in the admin area of OTRS lets you manage your SMIME
certificates. You can add or remove certificates and search through the
SMIME data.
</para>
</sect1>
<sect1 id="adminarea-pgp">
<title>PGP</title>
<para>
Since OTRS 2.0 it is possible to de- and encrypt messages with PGP. Also
you can 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>
e.g. with the
<link linkend="adminarea-sysconfig">
graphical configuration frontend
</link>
to the needs of your operating system.
</para>
<para>
<screenshot>
<screeninfo>PGP</screeninfo>
<graphic srccredit="Adminarea pgp - screenshot" scale="40" fileref="screenshots/admin-pgp.png"></graphic>
</screenshot>
</para>
<para>
Through the "PGP" link in the admin area of OTRS it is possible to manage
the key ring of the userer who shall be used for PGP with OTRS, 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>
</sect1>
<sect1 id="adminarea-status">
<title>States</title>
<para>
Through the "Status" link in the admin area of OTRS you can manage the
different states you want to use in the ticket system.
</para>
<para>
<screenshot>
<screeninfo>Managing states</screeninfo>
<graphic srccredit="Adminarea states - screenshot" scale="40" fileref="screenshots/admin-status.png"></graphic>
</screenshot>
</para>
<para>
After a default setup the states "closed successful",
"closed unsuccessful", "merged", "new", "open", "pending auto close+",
"pending auto close-" "pending reminder" and "removed" are already
installed in the system. Every state is linked to a state type that needs
to be specified if a new state is created. Per default the state types
"closed", "merged", "new", "open", "pending auto", "pendig reminder" and
"removed".
</para>
</sect1>
<sect1 id="adminarea-sysconfig">
<title>The graphical configuration frontend (SysConfig)</title>
<para>
Since OTRS 2.0 it is possible to change nearly all configuration parameter
of the ticket system through the web interface. The new graphical
configuration frontend makes it possible.
</para>
<para>
<screenshot>
<screeninfo>The graphical configuration frontend of OTRS (SysConfig)</screeninfo>
<graphic srccredit="Adminarea sysconfig - screenshot" scale="40" fileref="screenshots/admin-sysconfig.png"></graphic>
</screenshot>
</para>
<para>
The "SysConfig" link in the admin area of OTRS loads the graphical
configuration frontend. You can upload own config files for the system and
backup all your current settings into a file. Almost all config parameters
of the OTRS framework and the installed applications can be viewd and
changed through the web interface. Because all config parameters are sorted
into groups and sub groups it is possible to navigate quickly through the
multitude of the parameters. Also it is possible to mae a full-text
search through all the config parameters.
</para>
<para>
In the chapter
<link linkend="sysconfig">
"Configuring the system through the web interface"
</link>
the graphical configuration frontend is described more detailed.
</para>
</sect1>
<sect1 id="adminarea-postmasterpop3-account">
<title>Using POP3 accounts</title>
<para>
There are several possibilities to transport new emails into the ticket
system. One possibility is the
<link linkend="email-receiving-cmd">
PostMaster.pl module
</link>
that pipes the mails directly into the system. Another possibility are POP3
accounts which can be administrated through the web interface. The
"PostMaster POP3 Account" link in the admin area of OTRS loads the
management console for the POP3 accounts.
</para>
<para>
<screenshot>
<screeninfo>POP3 account management</screeninfo>
<graphic srccredit="Adminarea postmasterpop3 - screenshot" scale="40" fileref="screenshots/admin-postmasterpop3.png"></graphic>
</screenshot>
</para>
<para>
See the section about the
<link linkend="email-receiving-pop3">
PostMaster POP3 accounts
</link>
for more details.
</para>
</sect1>
<sect1 id="adminarea-postmasterfilter">
<title>Filtering incoming messages</title>
<para>
Because incoming messages can be sorted automatically into queues or spam
mails can be moved into a specific queue, OTRS has the possibility to
filter incoming messages. It does not matter, if PostMasterPOP3.pl or
PostMaster.pl is used to get messages into the ticket system. Filter
rules can be created through the link "PostMaster Filter" in the admin area
of OTRS.
</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>
A filter rule consists of one or more filter criterias that must match if
the filter rule shall be executed and of one or more actions that are
executed, if the filter criterias match. You can define filter
criterias 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 criterias 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 deliver
it not to the system. The following table lists the different X-OTRS
headers and their meaning.
</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 in. Is a queue
set by a 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-Ignore:
</entry>
<entry>
Yes
</entry>
<entry>
Is this X-OTRS header set to "Yes", the incomming 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-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-ArticleKey(1|2|3):
</entry>
<entry>
Additional info key for the article.
</entry>
<entry>
Saves an additional info key for this article.
</entry>
</row>
<row>
<entry>
X-OTRS-ArticleValue(1|2|3):
</entry>
<entry>
Additional info value for the article.
</entry>
<entry>
Saves an additional info value for the article.
</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-TicketKey(1|2|...|8):
</entry>
<entry>
Additional info key for the ticket.
</entry>
<entry>
Saves an additional info key for the ticket.
</entry>
</row>
<row>
<entry>
X-OTRS-TicketValue(1|2|...|8):
</entry>
<entry>
Additional info value for the ticket.
</entry>
<entry>
Saves an additional info value for the ticket.
</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. In the section for "Match"
the filter criteria can be specified. Choose via the listboxes for
"Header 1", "Header 2" and so on the parts of the messages where you would
like to search and specify via the input files on the right sides the
values. In the section for "Set" you can choose the actions that are
triggered, if the filter rules match. You can select for "Header 1",
"Header 2" and so on the X-OTRS-Header and set the values.
</para>
<example id="sort-mails-into-junk">
<title>Sort spam mails into a specific queue</title>
<para>
A nice and usefull filter rule could be to let OTRS sort mails marked for
spam with Spamassassin into the "Junk" queue automatically.
Spamassassin adds for every checked mail the "X-Spam-Flag" header.
Is the mail marked as spam, the Header is set to "Yes". So the filter criteria
is "X-Spam-Flag: Yes". To create a filter rule with this criteria you can
insert the name for example "spam-mails". Also choose in the section for
"Match" for "Header 1" from the listbox "X-Spam-Flag:". Insert "Yes" as
value for this header. Now the filter criteria is specified. To make sure,
that all spam mails get sorted into the "Junk" queue choose in the section for
"Set" for "Header 1" the "X-OTRS-Queue:" entry. Specify "Junk" as value for
this header. Finally add the new filter rule to activate it for the next
new messages in the system.
</para>
</example>
<para>
There are aditional modules, that can be used to
<link linkend="email-receiving-filter">
filter incoming messages
</link>
more specificaly. This modules might be usefull on bigger and more complex
systems.
</para>
</sect1>
<sect1 id="adminarea-genericagent">
<title>Executing automated jobs with the GenericAgent</title>
<para>
The GenericAgent is a tool to execute tasks automatically that must be done
by a human person, a real agent,normaly. The GenericAgent for example can
close or move tickets, send notifications aboout escalated tickets, e.g.
</para>
<para>
<screenshot>
<screeninfo>Joblist for the GenericAgent</screeninfo>
<graphic srccredit="Adminarea genericagent - screenshot" scale="40" fileref="screenshots/admin-genericagent-new.png"></graphic>
</screenshot>
</para>
<para>
To create a new job for the GenericAgent the link "GenericAgent" in the
admin area of OTRS can be used. A table with the already created jobs is
displayed where jobs can be executed manualy or be removed. To create a new
job a name must be specified and the "Add" button must be pressed.
</para>
<para>
<screenshot>
<screeninfo>Creating a job for the GenericAgent</screeninfo>
<graphic srccredit="Adminarea genericagent - screenshot" scale="40" fileref="screenshots/admin-genericagent.png"></graphic>
</screenshot>
</para>
<para>
Via the screen for the creation of a new job for the GenericAgent the times
can be specified when the job shall be executed. Also different criteria
can be specified to select the tickets that shall be affected by the job.
Also it is possible to set the new properties of the tickets which are
affected by the new job.
</para>
<para>
If the creation of the job is finished all tickets are listed, that are
affected by the job. This list of tickets let you control if the job
works right, no changes are made to these tickets yet. The job will be
really activated if it is saved into the job list.
</para>
</sect1>
<sect1 id="adminarea-adminemail">
<title>Admin email</title>
<para>
The OTRS administrator can send a message to specific users or user groups.
The "Admin Notification" link opens the screen where the users and groups
can be selected that should be notified by the admin.
</para>
<para>
<screenshot>
<screeninfo>Admin notification</screeninfo>
<graphic srccredit="Adminarea email - screenshot" scale="40" fileref="screenshots/admin-email.png"></graphic>
</screenshot>
</para>
<para>
The sender, the subject and the message text of the notification can be
specified via the admin notification screen. Also the users and groups who
should receive the message can be selected from the table.
</para>
</sect1>
<sect1 id="adminarea-session-management">
<title>Session management</title>
<para>
To get an overview on the currently loged in users and their session
properties the "Session Management" link in the admin area can be used.
</para>
<para>
<screenshot>
<screeninfo>Session management</screeninfo>
<graphic srccredit="Adminarea sessionmanagement - screenshot" scale="40" fileref="screenshots/admin-sessionmanagement.png"></graphic>
</screenshot>
</para>
<para>
Some general information about all active sessions are displayed, e.g. how
many users currently are loged in, how many agent and customer users are
using the system, e.g. With the "kill all sessions" button all users
sessions can be deactivated. Also detailed information for every session are
available and every session can be removed separately.
</para>
</sect1>
<sect1 id="adminarea-system-log">
<title>System Log</title>
<para>
The "System Log" link in the admin area of OTRS shows the last log entries
of the system.
</para>
<para>
<screenshot>
<screeninfo>System Log</screeninfo>
<graphic srccredit="Adminarea syslog - screenshot" scale="40" fileref="screenshots/admin-syslog.png"></graphic>
</screenshot>
</para>
<para>
A line in the log contains a timestamp, the log priority, the system
component and the log entry itself.
</para>
<note>
<para>
The system logs are only available via the web interface on linux or
unix systems.
</para>
</note>
<para>
The count of the shown log entries can be specified via the
<link linkend="Framework:Core::Log:LogSystemCacheSize">
LogSystemCacheSize
</link>
config parameter.
</para>
</sect1>
<sect1 id="adminarea-selectbox">
<title>SQL queries via the select box</title>
<para>
The "Select Box" link opens a screen that lets you query the content of the
tables in the OTRS database. It is not possible to change the content of
the
tables, only queries are allowed.
</para>
<para>
<screenshot>
<screeninfo>Select Box</screeninfo>
<graphic srccredit="Adminarea selectbox - screenshot" scale="40" fileref="screenshots/admin-selectbox.png"></graphic>
</screenshot>
</para>
</sect1>
<sect1 id="adminarea-package-manager">
<title>Package manager</title>
<para>
Since OTRS 2.0 OTRS is splitted into a central framework and some
separated applications like a file manager, a web based calendar or a
web mailer. To ease the handling of the separated applications the web
based package manager can be used, the "Package Manager" link in the admin
area of OTRS opens this module.
</para>
<para>
<screenshot>
<screeninfo>Package Manage</screeninfo>
<graphic srccredit="Adminarea packagemanager - sreenshot" scale="40" fileref="screenshots/admin-packagemanager.png"></graphic>
</screenshot>
</para>
<para>
The package manager can only handle opm packages, other formats (rpm, deb,
e.g.) are not supported. It is possible to define several installation
sources. Is an opm file stored on your local hard disk you can install the
package by specifying this file in the input field for "Package" via the
absolute path and the file name. The "Install" button installs this package
in your system and adds all necessary files, changes the database, e.g.
</para>
<para>
If always the most actual package should be used the packages can be
installed via a online repository too. The latest list of all applications
in the online repository can be downloaded if a server is selected via the
"Source" listbox and the "Update" button is pressed. After a while on the
right site of the screen all available application ar listed in the table
for the online repository. You can use the "Install" button in the right
column of the online repository table to integrate the module into your
system. If a package depends on other packages the package manager takes
care if the other needed applications are already installed. If a package
has been installed successfuly the application is displayed in the local
repository.
</para>
<para>
If you need to remove an application you can use the "Uninstall" button in
the local repository for the specific application. Dependencies to other
applications are also watched during deinstallation.
</para>
</sect1>
</chapter>
|