(SOLVED)Default dynamic field value is not setting via email

Moderator: crythias

Locked
bayerex
Znuny expert
Posts: 164
Joined: 03 Dec 2012, 00:30
Znuny Version: 3.2.7

(SOLVED)Default dynamic field value is not setting via email

Post by bayerex »

Hi,

the default value of DynamicField_WorkflowProcess is 'Support'. But this is not being set when a customer emails us.

I've tried using this ACL but it hasn't made any difference :(

Code: Select all

$Self->{TicketAcl}->{'ACL-Product selection 8'} =  
{ 
   ##### Select Support as Workflow value for the following queues 
   Properties => { 
	Ticket => { 
		Queue => ['Postmaster'], 
	}, 
   }, 
 
   Possible => { 
        Ticket => {                         
    DynamicField_WorkflowProcess  => ['Support'], 
	}, 
   }, 
};

Any suggestions?
Last edited by bayerex on 14 Dec 2012, 16:46, edited 1 time in total.
Current Production Server (recently switched from Windows)
OTRS 3.2.7 on Ubuntu 12.04LTS 64bit
PHP 5.3.10-1ubuntu3.6
mysql Ver 14.14 Distrib 5.5.31

Previous Production Server:
Windows 2008
MySQL 5.1.51 Community Server
Strawberry Perl 5.12.3.0
bayerex
Znuny expert
Posts: 164
Joined: 03 Dec 2012, 00:30
Znuny Version: 3.2.7

Re: Default dynamic field value is not setting via email

Post by bayerex »

I tried this ACL too but still no luck :(

Code: Select all

$Self->{TicketAcl}->{'ACL-Product selection 8'} =  
{ 
   ##### Select Support as Workflow value for the following queues 
   Properties => { 
	Ticket => { 
		Queue => ['Postmaster'], 
	}, 
   }, 
         
        Ticket => {                         
            DynamicField_WorkflowProcess => ['Support'],
	      }, 
   }, 
};
Current Production Server (recently switched from Windows)
OTRS 3.2.7 on Ubuntu 12.04LTS 64bit
PHP 5.3.10-1ubuntu3.6
mysql Ver 14.14 Distrib 5.5.31

Previous Production Server:
Windows 2008
MySQL 5.1.51 Community Server
Strawberry Perl 5.12.3.0
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Default dynamic field value is not setting via email

Post by crythias »

email requires postmaster filter.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
bayerex
Znuny expert
Posts: 164
Joined: 03 Dec 2012, 00:30
Znuny Version: 3.2.7

Re: Default dynamic field value is not setting via email

Post by bayerex »

crythias wrote:email requires postmaster filter.
ahha! That's worked. Thanks.
Current Production Server (recently switched from Windows)
OTRS 3.2.7 on Ubuntu 12.04LTS 64bit
PHP 5.3.10-1ubuntu3.6
mysql Ver 14.14 Distrib 5.5.31

Previous Production Server:
Windows 2008
MySQL 5.1.51 Community Server
Strawberry Perl 5.12.3.0
Locked