The address book of the T300/500 PBX system provides access to important or frequently used phone numbers and a detailed view of each entry.
Click on Addressbook in the menu bar.
The contacts can be called directly from the address book:
You can use up to 8000 entries.
Adding entries
|
Import entries using a CSV-file
|
Delete entries
|
Delete complete address book
[root@T300 ~]# psql asterisk Welcome to psql 8.3.12, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \h for help with SQL commands \? for help with psql commands \g or terminate with semicolon to execute query \q to quit asterisk=#
asterisk=# select * from person; id | accountid | familyname | firstname | folder ------+-----------+---------------------+-----------------------------+-------- 0 | 0 | Nobody | | 0 1000 | 1000 | Eric | Kantoor | 0 1034 | 1038 | Prive | Prive | 0
asterisk=# delete FROM person WHERE id > 0 and accountid = 0; DELETE 323 asterisk=#
asterisk=# \q |