Search found 659 matches
- 28 Jun 2025, 11:43
- Forum: Developers
- Topic: Issues understanding output filter module well
- Replies: 9
- Views: 5923
Re: Issues understanding output filter module well
The good luck here means you dive into the code part by part
.. it is good if you already have perl knowledge and znuny framework knowledge..thats all i can help at the moment of free time..
- 27 Jun 2025, 08:59
- Forum: Developers
- Topic: Issues understanding output filter module well
- Replies: 9
- Views: 5923
Re: Issues understanding output filter module well
1. First your posted xml is to register new widget module. You have module file and also .tt files. The method there is 'Adding' new item html. 2. There are 2 ways to modify existing html. https://doc.znuny.org/developer/extending/module-layers.html FilterElementPost These filters allow to modify th...
- 05 Apr 2025, 05:15
- Forum: Help
- Topic: Cannot Fetch Email from Sharedmailbox from Office365
- Replies: 2
- Views: 6967
Re: Cannot Fetch Email from Sharedmailbox from Office365
Additionally, when requesting new token (1st time), use incognito mode
- 05 Apr 2025, 05:12
- Forum: Help
- Topic: Display values as a tree DynamicField Dropdown
- Replies: 3
- Views: 1838
Re: Display values as a tree DynamicField Dropdown
Use ACL
Example
PosibleNot
- Ticket
-- DynamicField_X
--- Level 1, Level 2
Example
PosibleNot
- Ticket
-- DynamicField_X
--- Level 1, Level 2
- 26 Mar 2025, 10:13
- Forum: General
- Topic: ACL transfers hidden fields to frontend
- Replies: 4
- Views: 8640
Re: ACL transfers hidden fields to frontend
This look like OTOBO instead of Znuny 

- 16 Dec 2024, 14:43
- Forum: Help
- Topic: Variables unclear on processes
- Replies: 1
- Views: 12688
Re: Variables unclear on processes
https://doc.znuny.org/znuny/annexes/pla ... index.html
it work for me using UserID => <OTRS_CURRENT_UserID>
Or are you talking about "From" ?
it work for me using UserID => <OTRS_CURRENT_UserID>
Or are you talking about "From" ?
- 16 Dec 2024, 14:41
- Forum: General
- Topic: Transition Action ArticleSend with Attachment
- Replies: 4
- Views: 15402
Re: Transition Action ArticleSend with Attachment
this require further development..
alternatively, if the attachment is a fixed document (pre-upload), you can use Admin > Attachment.
In process management transition action (ArticleSend), use the attachment name.
alternatively, if the attachment is a fixed document (pre-upload), you can use Admin > Attachment.
In process management transition action (ArticleSend), use the attachment name.
- 11 Dec 2024, 14:53
- Forum: Help
- Topic: Close ticket timestamp on Customer Portal
- Replies: 5
- Views: 14140
Re: Close ticket timestamp on Customer Portal
The deafult api did not return close time.. the closest is last changed time. 1. of course, updating closed ticket will update the changed time. Znuny_HomeCustom/Kernel/Output/HTML/Templates/Standard/CustomerTicketZoom.tt <li> <span class="Key">[% Translate("Changed") | html %]:<...
- 11 Dec 2024, 14:21
- Forum: General
- Topic: Auto Respones - envelope sender
- Replies: 1
- Views: 11250
Re: Auto Respones - envelope sender
Admin > Auto Response > Select auto response.
From there you can select which email address (From) to be use.
From there you can select which email address (From) to be use.
- 02 Sep 2024, 13:48
- Forum: Help
- Topic: Need Module! - Error when opening the dashboard.
- Replies: 3
- Views: 2644
Re: Need Module! - Error when opening the dashboard.
I would go to sysconfig > DashboardBackend###
Try to reset it first any modified setting.
Try to reset it first any modified setting.
- 09 Aug 2024, 05:50
- Forum: Help
- Topic: TicketCreate operation returns with a "MissingParameter" error
- Replies: 8
- Views: 3844
Re: TicketCreate operation returns with a "MissingParameter" error
You are missing Ticket->CustomerUser and Article->To (valid email address when Article->ArticleSend is set) my $Params = { UserLogin => $User, Password => $Pass, Ticket => { Title => "desiredTitle", Queue => "Raw", State => "new", Priority => "3 normal", Type ...
- 07 Aug 2024, 21:21
- Forum: Help
- Topic: TicketCreate operation returns with a "MissingParameter" error
- Replies: 8
- Views: 3844
Re: TicketCreate operation returns with a "MissingParameter" error
TicketCreate should use Post method Im not sure about python, but in perl have to set additional header # Method: POST # Endpoint: /Ticket $RestClient->addHeader('Content-Type', 'application/json'); $RestClient->addHeader('charset', 'UTF-8'); $RestClient->addHeader('Accept', 'application/json');
- 07 Aug 2024, 15:40
- Forum: General
- Topic: Generic Agent Custom Module question / problem
- Replies: 2
- Views: 14653
Re: Generic Agent Custom Module question / problem
Use that TicketID , then perform api call to TicketGet my $TicketObject = $Kernel::OM->Get('Kernel::System::Ticket'); my %Ticket = $TicketObject->TicketGet( TicketID => $Param{TicketID}, UserID => 1, DynamicFields => 1, ); https://doc.znuny.org/legacy/api/otrs/6.0/Perl/Kernel/System/Ticket.pm.html#T...
- 06 Aug 2024, 13:02
- Forum: General
- Topic: TicketZoom Button to move and lock (move is working, locking is not)
- Replies: 3
- Views: 14190
Re: TicketZoom Button to move and lock (move is working, locking is not)
try
Code: Select all
UserID=[% Env("UserID") | html %]
- 09 Jul 2024, 13:32
- Forum: Help
- Topic: Time Incorrect
- Replies: 2
- Views: 2717
Re: Time Incorrect
Code: Select all
System Configuration > OTRSTimeZone
- 09 Jul 2024, 06:44
- Forum: Help
- Topic: SAML Login via e-mail address using mod_mellon and Azure
- Replies: 3
- Views: 2882
- 27 Jun 2024, 11:21
- Forum: Help
- Topic: Ticket Queue View - change default view
- Replies: 7
- Views: 3859
Re: Ticket Queue View - change default view
Code: Select all
Frontend::Navigation###AgentTicketQueue###002-Ticket
- 26 Jun 2024, 16:45
- Forum: General
- Topic: Make the Service field readonly in CustomerTicketMessage
- Replies: 1
- Views: 2846
Re: Make the Service field readonly in CustomerTicketMessage
This will require a bit of development..
JS will be able to handle this
JS will be able to handle this
- 26 Jun 2024, 16:44
- Forum: General
- Topic: [SOLVED] PostMaster Filter Set Dynamic Field from Body
- Replies: 2
- Views: 2938
- 16 Jun 2024, 08:47
- Forum: Help
- Topic: soap lite warning during check module
- Replies: 1
- Views: 1947
Re: soap lite warning during check module
Little bug old version..
You should update to the latest one..
https://github.com/znuny/Znuny/issues/234
You should update to the latest one..
https://github.com/znuny/Znuny/issues/234
- 13 Jun 2024, 19:21
- Forum: Help
- Topic: General help with implementing Znuny
- Replies: 3
- Views: 2576
Re: General help with implementing Znuny
Operating system Linux (Debian or Red Hat preferred) Perl 5.16.0 or higher Web server Apache 2 + mod_perl2 or higher (recommended) Web server with CGI support (CGI is not recommended) Databases MySQL 5.0 or higher MariaDB PostgreSQL 9.2 or higher Oracle 10g or higher Hardware (from 6.0.x version doc...
- 12 Jun 2024, 18:51
- Forum: Help
- Topic: Dynamic Field wont show up in AgentTicketZoom
- Replies: 12
- Views: 3307
Re: Dynamic Field wont show up in AgentTicketZoom
First of all, the dynamic field and its value must be existed.
Can you share the screenshot of agent ticket zoom dynamic field setting?
Can you share the screenshot of agent ticket zoom dynamic field setting?
- 07 Jun 2024, 10:30
- Forum: Help
- Topic: Config "Article Display" setting in AgentTicketZoom, where?
- Replies: 2
- Views: 5727
Re: Config "Article Display" setting in AgentTicketZoom, where?
Code: Select all
Ticket::Frontend::AgentZoomExpand
- 02 Jun 2024, 08:37
- Forum: Help
- Topic: Update customer in TicketAgentNote?
- Replies: 5
- Views: 2602
Re: Update customer in TicketAgentNote?
i have write some simple notice to check on customer user, service, sla https://github.com/mo-azfar/Znuny-AgentTicketZoom-Notice 2. Further idea maybe use of https://opar.perl-services.de/dist/DynamicFieldOTRSDBTable-7.0.1 from reneeb Populate customer data into it and enable it at some screen e.g: ...
- 25 May 2024, 08:46
- Forum: Help
- Topic: Update customer in TicketAgentNote?
- Replies: 5
- Views: 2602
Re: Update customer in TicketAgentNote?
Thats what can be done without custom development.. With custom dev, - write notice module that check on customer data and display notice - write output filter content to highlight button etc / popup no customer etc - write dynamic field customer module to have the field at agent ticket note - call ...
- 24 May 2024, 19:27
- Forum: Help
- Topic: Update customer in TicketAgentNote?
- Replies: 5
- Views: 2602
Re: Update customer in TicketAgentNote?
I wonder why not using existing Customer tab function ? cu_tab.png Then control it by ACL. ACL 1 => Disable certain menu module by default. E.g: Compose, Note, Pending, etc.. ACL 2 => Enable back the menu module upon customer id detected. Properties CustomerUser UserLogin: [RegExp].+ PossibleAdd Act...
- 24 May 2024, 14:59
- Forum: Help
- Topic: Link a new ticket to a FAQ item already at the opening
- Replies: 1
- Views: 1493
Re: Link a new ticket to a FAQ item already at the opening
since you already in generic agent and perl code, you are lookin at https://doc.znuny.org/legacy/api/otrs/6.0/Perl/Kernel/System/LinkObject.pm.html#LinkAdd This will be the combination of DynamicField (populate faq_id, faq_title), GenericAgent and Custom Module that should contains code as below $Tr...
- 23 May 2024, 20:32
- Forum: Help
- Topic: Possible to make Dynamic Fields mandatory for specific roles only?
- Replies: 2
- Views: 1573
Re: Possible to make Dynamic Fields mandatory for specific roles only?
Not possible without development..
However, if you in process ticket, you can create 2 activity dialog.
One contains mandatory field and another contain optional field..
Then use ACL to hide and show these activity dialog based on their role.
However, if you in process ticket, you can create 2 activity dialog.
One contains mandatory field and another contain optional field..
Then use ACL to hide and show these activity dialog based on their role.
- 23 May 2024, 20:29
- Forum: Help
- Topic: [Fixed] Ticket article not displayed for customer user
- Replies: 3
- Views: 1438
Re: Ticket article not displayed for customer user
Did you changed the ScriptAlias value? If you changed that, make sure also change it at $HOME/scripts/apache2-httpd.include.conf (with the expectation you already symlink it to apache config as well)
- 06 May 2024, 20:58
- Forum: Help
- Topic: Customer Portal not loading services when ACLs are valid
- Replies: 12
- Views: 4627
Re: Customer Portal not loading services when ACLs are valid
Do you have any 3rd party addon that related to the Services?
Do also check $HOME/Kernel/Config.pm..
Or any files that not standard OTRS in $HOME/Kernel/Config/Files/*
Do also check $HOME/Kernel/Config.pm..
Or any files that not standard OTRS in $HOME/Kernel/Config/Files/*
- 06 May 2024, 18:44
- Forum: Help
- Topic: [Solved] LDAP authentication for customer users on Windows Server 2019 AD
- Replies: 3
- Views: 1385
Re: LDAP authentication for customer users on Windows Server 2019 AD
Yeah you right..you need to copy this to Config.pm
Additionally, you also need Customer::AuthModule
https://github.com/znuny/Znuny/blob/2bf ... s.pm#L1372
Additionally, you also need Customer::AuthModule
https://github.com/znuny/Znuny/blob/2bf ... s.pm#L1372
- 06 May 2024, 10:42
- Forum: Help
- Topic: Customer Portal not loading services when ACLs are valid
- Replies: 12
- Views: 4627
Re: Customer Portal not loading services when ACLs are valid
Let me recap
- All ACL disabled
- Default service untick / unassigned
How about each customer user services?
Do both of them have same services allocated to them?
Try remove them all first, then use Default Services assignment instead.
- All ACL disabled
- Default service untick / unassigned
How about each customer user services?
Do both of them have same services allocated to them?
Try remove them all first, then use Default Services assignment instead.
- 30 Apr 2024, 08:20
- Forum: Help
- Topic: Customer Portal not loading services when ACLs are valid
- Replies: 12
- Views: 4627
Re: Customer Portal not loading services when ACLs are valid
Also check the default services..
Its also at the Admin > Services (on the left screen)
Its also at the Admin > Services (on the left screen)
- 30 Apr 2024, 08:15
- Forum: General
- Topic: api to manage customers/users
- Replies: 2
- Views: 3820
- 24 Apr 2024, 07:40
- Forum: Help
- Topic: Customer Portal not loading services when ACLs are valid
- Replies: 12
- Views: 4627
Re: Customer Portal not loading services when ACLs are valid
1. Perhaps recheck the ProcessEntityID..maybe it has different ID from production..
2. Also try to use exact services name instead..
3. Also check another ACL that disabled/hide the services.
4. ACL is executed one by one..so i would check any ACL that perhaps overwrite/executed over this ACL.
2. Also try to use exact services name instead..
3. Also check another ACL that disabled/hide the services.
4. ACL is executed one by one..so i would check any ACL that perhaps overwrite/executed over this ACL.
- 22 Apr 2024, 12:56
- Forum: Help
- Topic: Customer Portal not loading services when ACLs are valid
- Replies: 12
- Views: 4627
Re: Customer Portal not loading services when ACLs are valid
I just added my own process id and services..work fine..
i guess the regex may be the issue
RESULT
i guess the regex may be the issue
RESULT
- 20 Apr 2024, 08:28
- Forum: Help
- Topic: Customer Portal not loading services when ACLs are valid
- Replies: 12
- Views: 4627
Re: Customer Portal not loading services when ACLs are valid
That maybe means the ACL is incorrect..
Do share your ACL 1st
Do share your ACL 1st
- 11 Apr 2024, 15:31
- Forum: Help
- Topic: Generic Agent executes 2 hours after the expected time-frame
- Replies: 2
- Views: 1804
Re: Generic Agent executes 2 hours after the expected time-frame
Generic agent is based on UTC..
E.g : GA is selected to run at 9.00am.
Since your is +2, its running at 11.00am (9 a.m utc)
You can check by
E.g : GA is selected to run at 9.00am.
Since your is +2, its running at 11.00am (9 a.m utc)
You can check by
Code: Select all
bin/znuny.Console.pl Maint::Daemon::Summary
- 03 Apr 2024, 12:49
- Forum: Help
- Topic: Merge to ticket on external reference
- Replies: 3
- Views: 1903
Re: Merge to ticket on external reference
Perhaps you are looking at ExternalTicketNumber Recognition features as describe here https://doc.znuny.org/znuny_lts/annexes ... index.html
- 29 Mar 2024, 19:06
- Forum: General
- Topic: Question about MySQL 8
- Replies: 4
- Views: 4439
Re: Question about MySQL 8
Just notice do not go to v8.0.34 as reported here https://github.com/znuny/Znuny/issues/548
- 19 Mar 2024, 16:21
- Forum: Help
- Topic: Last inbound email datetime?
- Replies: 1
- Views: 1981
Re: Last inbound email datetime?
Edit:
Oppss..im wrong..
Do check addon Znuny-SortByLastContact
Oppss..im wrong..
Do check addon Znuny-SortByLastContact
- 06 Mar 2024, 14:18
- Forum: General
- Topic: (SOLVED) ACL - configure dynamic field values visible depends on queues.
- Replies: 2
- Views: 3298
Re: ACL - configure dynamic field values visible depends on queues.
You missing DynamicField_
Try
To define multiple value, use the (+) symbols
Try
Code: Select all
Properties =>
Ticket =>
Queue => SD
Possible =>
Ticket =>
DynamicField_CloseCategory => x
- 29 Feb 2024, 19:35
- Forum: Help
- Topic: Seeking Guidance on Transitioning to OAuth 2.0 Authentication
- Replies: 11
- Views: 4260
- 27 Feb 2024, 01:50
- Forum: Help
- Topic: Support Data Collector vs otrs.CheckModules.pl perl module versions
- Replies: 9
- Views: 3288
Re: Support Data Collector vs otrs.CheckModules.pl perl module versions
Check this for system wide
viewtopic.php?p=172324#p172324
viewtopic.php?p=172324#p172324
- 26 Feb 2024, 10:38
- Forum: Help
- Topic: [solved]problem after upgrading from 6.5.4 to 6.5.6
- Replies: 16
- Views: 5780
Re: problem after upgrading from 6.5.4 to 6.5.6
try private mode browser / disable browser addon if using..
as there is not much log here, i just can guess
as there is not much log here, i just can guess
- 24 Feb 2024, 05:00
- Forum: Help
- Topic: [solved]problem after upgrading from 6.5.4 to 6.5.6
- Replies: 16
- Views: 5780
Re: problem after upgrading from 6.5.4 to 6.5.6
I would try to remove MarkTicketSeenUnseen addon first..
- 23 Feb 2024, 16:35
- Forum: Help
- Topic: [solved]problem after upgrading from 6.5.4 to 6.5.6
- Replies: 16
- Views: 5780
Re: problem after upgrading from 6.5.4 to 6.5.6
Not sure this has anything to do with the issue..
Do you execute migration script?
Do you execute migration script?
- 23 Feb 2024, 16:18
- Forum: General
- Topic: SOLVED: migrate database from otrs 6.0.29 to znuny 6.5.6
- Replies: 8
- Views: 16984
Re: migrate database from otrs 6.0.29 to znuny 6.5.6
Migration script (scripts/MigrateToZnuny6_x.pl) will handle all this db things.
And if course u have to do 1 by 1. as mention above
And if course u have to do 1 by 1. as mention above
- 20 Feb 2024, 13:40
- Forum: Help
- Topic: [resolved] How to configure article header behavior as it was with 5.x?
- Replies: 3
- Views: 2385
Re: How to configure article header behavior as it was with 5.x?
Not sure this on v6.x or not..do check sysconfig for
Code: Select all
Ticket::Frontend::ArticleHeadVisibleDefault
- 16 Feb 2024, 12:41
- Forum: Help
- Topic: Dashboard Defaults not taken over
- Replies: 3
- Views: 2252
Re: Dashboard Defaults not taken over
no that im aware of..perhaps others users can help.. Build user preferences field based on the dashboard type. Admin than update the correct value from Admin > Agent > Select Agent > User Preferences> Miscellaneous This post may help https://community.znuny.org/viewtopic.php?t=19936 PrefKey => UserD...