#***************************************************************** # C L I E N T # C O N F I G U R A T I O N P R O P E R T I E S # T E M P L A T E # # in order to configure you application, has to be changed the # sections between '<' and '>' characters #***************************************************************** ################################################################## # B A S E P A T H ################################################################## basePath=file:///C:/Projects//WEB/ ################################################################## # T E M P P A T H ################################################################## #used by umplugin, scene, report tempPath=C:/Project//WEB/ ################################################################## # F I L E S C O M P R E S S I O N ################################################################## #useCompressed: =false during development, =true when put in production useCompressed=false ################################################################## # M E T A D A T A C A C H E (WEBCLIENT) ################################################################## #timeToIdleSeconds keep 1 in configuration phase. Increase as wanted in production. tipycally 3600=1 hour metadatacache.timeToIdleSeconds=1 #timeToLiveSecon keep 1 in configuration phase. Increase as wanted in production. tipycally 3600=1 hour metadatacache.timeToLiveSeconds=1 ################################################################## # P R O J E C T I N D E X ################################################################## applicationIndexTitle=Geoweb framework 4.4.0 #applicationIndexColor1=#00569F applicationIndexColor1=#023B6E applicationIndexColor2=white applicationIndexColor3=#CECECE ################################################################## # G E N E R A L S E T T I N G S ################################################################## #hide default detail report (STAMPA SCHEDA) hideReportSingleView=true ################################################################## # M A P G U I D E ################################################################## mapguide.mgUsername=Administrator mapguide.mgPassword=admin #mapguide library path. used to update mapguide layers (destination use layer) mapguide.library.path=Library:// # webconfig.ini path # Geoweb tries to load webconfig.ini firstly from static contents, and secondarily from classPath. # If all ways before fail, Geoweb uses this absolute path. # This is generally used in Geoweb deployments that involve Linux + WebLogic pathTo.webconfig.ini=C:/Projects//WEB/conf/webconfig.ini #Next 4 parameters are used to dynamically overrides parameters set inside webconfig.ini. They works in independent way each others. Remove comment to override #mapguide.webconfig.ini.AdministrativeConnectionProperties.Port=2810 #mapguide.webconfig.ini.ClientConnectionProperties.Port=2811 #mapguide.webconfig.ini.SiteConnectionProperties.Port=2812 #mapguide.webconfig.ini.SiteConnectionProperties.IpAddress=10.31.219.236 # resource package auto loading. Feature source #Next 4, optional, parameters are used to auto configure feature source database parameters #during the procedure that applies resource package to all configured MapGuide servers #if not configured here the existing values inside .mpg file will not to be overridden #service often refers to the same machine in configured in jdbc.url, but here MUST to be expressed like an IPV4 format address. mapguide.resourcepackage.featuresource.service= mapguide.resourcepackage.featuresource.username= mapguide.resourcepackage.featuresource.password= mapguide.resourcepackage.featuresource.datastore= #@Deprecated from 4.4.0 (but supported yet) #mgUsername= #mgPassword= #geowebalias= #pathTo.webconfig.ini= ################################################################## # A U T O M A T I C D E P L O Y ################################################################## #geowebfolder contains resources to be automatically loaded during the server startup geowebfolder=C:\\projects\\\\geowebfolder ################################################################## # W O R K F L O W ################################################################## #This flag, default false, force to deploy all Process Definition #inside Activiti at every server startup, even if already deployed. #Usually all Activiti Process Definition, contained in one or more #.bpmn files, under the folder [geowebfolder]/activiti/ will to be #deployed inside Activiti, in a automatic way, during webapp initialization #If the Process Definition results already deployed, the deploy is skipped #This flag overrides this mechanism workflow.activiti.forceDeploy.enabled=false ################################################################## # M A P ################################################################## #Allowed range [0.001,1000] Ex: if map is in meter, but it had been loaded in mm, mapUnitFactor should be 1000 mapUnitFactor=1 #set the SRID used to handle spatial data from/to the database #this parameter SHOULD NOT generally to be set. #The SRID information is generally set inside MapGuide Maestro configuration #and it's enough. But sometimes spatial data in DB are populated in aim #to be consumed by other systems. #If omitted the default null SRID is used (change in base on DB vendor) #If set, this is used globally to hadle all spatial data #(but it can to be locally overridden using the gwAttribute xml parameter # named 'persistSridToDB') globalSRID= ################################################################## # U P L O A D M A N A G E R ################################################################## #when loading a CAD drawing, specify, when true, if a SDF file is created for background layer, otherwise put all vector entities in drawing_background relations #useSDFForBackground=true useSDF=true # availablePackages=Bim\,PointCloud\,Plan\,BulkUp\,Views uploadManager.availablePackages=Bim\,PointCloud\,BulkUp\,Plan\,Views #projectType=building or model uploadManager.projectType=building # savingFileOn=db or alfresco (BulkUp - sperimentato su CDE) uploadManager.savingFileOn=alfresco #if alfresco -> set class, class attribute, code attribute, #column name of file name to search table record with the cmis widget uploadManager.fileClass=cde_deliverable_upload_manager uploadManager.fileAttribute=file_name uploadManager.fileCodeColumn=cod_deliverable_full uploadManager.fileName=cod_deliverable_full # Modello 3d (Bim,PointCloud) # saving IFC On=db or alfresco uploadManager.savingModelOn=alfresco uploadManager.modelClass=cde_deliverable_upload_manager uploadManager.modelAttribute=file_name uploadManager.modelCodeColumn=cod_deliverable_full uploadManager.modelName=cod_deliverable_full uploadManager.attachmentsAttribute=allegati_deliverable ################################################################## # GW M A I L C O N F ################################################################## #from version 4.2.12 deprecates calendar.memoscheduler.* stuff #email that will be shown as the sender by the email receiver. Used when 'from' is not passed to gwMailService.sendMail(..) gwMailService.defaultSenderEmail=no-reply@geowebitalia.it gwMailService.user=demo.facilityservice@gmail.com gwMailService.password=demoFS2016 gwMailService.host=smtp.gmail.com gwMailService.port=465 #mail.smtp.starttls.enable - boolean - If true, enables the use of the STARTTLS command (if supported by the server) to switch the connection to a TLS-protected connection before issuing any login commands. Note that an appropriate trust store must configured so that the client will trust the server's certificate. Defaults to false. gwMailService.mailSmtpStarttlsEnable=false #mail.smtp.auth - boolean - If true, attempt to authenticate the user using the AUTH command. Defaults to false. gwMailService.mailSmtpAuth=true #mail.smtp.socketFactory.port - int - Specifies the port to connect to when using the specified socket factory. If not set, the default port will be used. gwMailService.mailSmtpSocketFactoryPort=465 #mail.smtp.socketFactory.class - String - If set, specifies the name of a class that implements the javax.net.SocketFactory interface. This class will be used to create SMTP sockets. gwMailService.mailSmtpSocketFactoryClass=javax.net.ssl.SSLSocketFactory #mail.smtp.socketFactory.fallback - boolean - If set to true, failure to create a socket using the specified socket factory class will cause the socket to be created using the java.net.Socket class. Defaults to true. gwMailService.mailSmtpSocketFactoryFallback=false #mail.smtp.quitwait - boolean - If set to false, the QUIT command is sent and the connection is immediately closed. If set to true (the default), causes the transport to wait for the response to the QUIT command. gwMailService.mailSmtpQuitwait=false #mail.debug - boolean gwMailService.mailDebug=true #mail.smtp.ssl.enable - boolean - If set to true, use SSL to connect and use the SSL port by default. Defaults to false for the "smtp" protocol and true for the "smtps" protocol. gwMailService.mailSmtpSslEnable= #mail.smtp.ssl.trust - String - If set, and a socket factory hasn't been specified, enables use of a MailSSLSocketFactory. If set to "*", all hosts are trusted. If set to a whitespace separated list of hosts, those hosts are trusted. Otherwise, trust depends on the certificate the server presents. gwMailService.mailSmtpSslTrust=* #mail.smtp.ssl.protocols - String - Specifies the SSL protocols that will be enabled for SSL connections. The property value is a whitespace separated list of tokens acceptable to the javax.net.ssl.SSLSocket.setEnabledProtocols method. (from gw version 4.4.17) gwMailService.mailSmtpSslProtocols= ################################################################## # G W S C H E D U L E R ################################################################## #toggle the gwSchedluer execution, optional, default true gwscheduler.enabled=false #toggle the support for cluster environment , optional, default false #is subordinate to the addition of the field 'lock_end_time' #to 'gw_sched_def' relation gwscheduler.clusterMode.enabled=false ################################################################## # E V E N T M E M O S C H E D U L E R ################################################################## #toggle memo scheduler. When omitted default is true eventmemo.scheduler.enabled=false #http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html # # Field Name Allowed Values Allowed Special Characters # Seconds 0-59 , - * / # Minutes 0-59 , - * / # Hours 0-23 , - * / # Day-of-month 1-31 , - * ? / L W # Month 1-12 or JAN-DEC , - * / # Day-of-Week 1-7 or SUN-SAT , - * ? / L # # #1 0 3 * * ? stand for every day at 3:00:01 am #calendar.memoscheduler.cronExpression=1 0 3 * * ? eventmemo.scheduler.cronExpression=1 0 3 * * ? #deleteEventMemoOfExpiredEventAfterEndAlert eventmemo.scheduler.deleteEventMemoOfExpiredEventAfterEndAlert=false ################################################################## # M O N I T O R I N G S C H E D U L E R ################################################################## #toggle monitoring scheduler. When omitted default is false monitoring.scheduler.enabled=false #http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html # # Field Name Allowed Values Allowed Special Characters # Seconds 0-59 , - * / # Minutes 0-59 , - * / # Hours 0-23 , - * / # Day-of-month 1-31 , - * ? / L W # Month 1-12 or JAN-DEC , - * / # Day-of-Week 1-7 or SUN-SAT , - * ? / L # # #1 0 3 * * ? stand for every day at 3:00:01 am #calendar.memoscheduler.cronExpression=1 0 3 * * ? monitoring.scheduler.cronExpression=10 0 3 * * ? ################################################################## # P L A N N E D A C T I V I T Y S C H E D U L E R ################################################################## #toggle memo scheduler. When omitted default is false plannedActivity.scheduler.enabled=false #http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html # # Field Name Allowed Values Allowed Special Characters # Seconds 0-59 , - * / # Minutes 0-59 , - * / # Hours 0-23 , - * / # Day-of-month 1-31 , - * ? / L W # Month 1-12 or JAN-DEC , - * / # Day-of-Week 1-7 or SUN-SAT , - * ? / L # # #1 0 3 * * ? stand for every day at 3:00:01 am #calendar.memoscheduler.cronExpression=1 0 3 * * ? plannedActivity.scheduler.cronExpression=20 0 3 * * ? ################################################################## # A E C A S S I G N M E N T S C H E D U L E R ################################################################## #toggle memo scheduler. When omitted default is false calendar.aecAssignmentWS.enabled=false #http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html # # Field Name Allowed Values Allowed Special Characters # Seconds 0-59 , - * / # Minutes 0-59 , - * / # Hours 0-23 , - * / # Day-of-month 1-31 , - * ? / L W # Month 1-12 or JAN-DEC , - * / # Day-of-Week 1-7 or SUN-SAT , - * ? / L # # #1 0 3 * * ? stand for every day at 3:00:01 am #calendar.memoscheduler.cronExpression=1 0 3 * * ? calendar.aecAssignmentWS.cronExpression=1 0 22 * * ? ################################################################## # D A T A B A S E S ################################################################## ################################################################## # database ORACLE ################################################################## #jdbc.driverClassName=oracle.jdbc.driver.OracleDriver #jdbc.url=jdbc:oracle:thin:@:: # es: jdbc.url=jdbc:oracle:thin:@ora11dev.gruppoesc.it:1521:ORA11DEV #jdbc.username= #jdbc.password= #jdbc.maxActive=6 #jdbc.minIdle=2 #jdbc.maxIdle=6 #jdbc.validationQuery=select 1 from dual #jdbcmetadata.driverClassName=oracle.jdbc.driver.OracleDriver #jdbcmetadata.url=jdbc:oracle:thin:@:: #es: jdbcmetadata.url=jdbc:oracle:thin:@ora11dev.gruppoesc.it:1521:ORA11DEV #jdbcmetadata.username= #jdbcmetadata.password= #jdbcmetadata.maxActive=6 #jdbcmetadata.minIdle=2 #jdbcmetadata.maxIdle=6 #jdbcmetadata.validationQuery=select 1 from dual ################################################################## # database POSTGRES ################################################################## jdbc.driverClassName=org.postgresql.Driver jdbc.url=jdbc:postgresql://:/ # es: jdbc.url=jdbc:postgresql://127.0.0.1:5432/TEST_GW44 jdbc.username= jdbc.password= jdbc.maxActive=6 jdbc.minIdle=2 jdbc.maxIdle=6 jdbc.validationQuery=select 1 jdbcmetadata.driverClassName=org.postgresql.Driver jdbcmetadata.url=jdbc:postgresql://:/ # es: jdbcmetadata.url=jdbc:postgresql://127.0.0.1:5432/TEST_GW44 jdbcmetadata.username= jdbcmetadata.password= jdbcmetadata.maxActive=6 jdbcmetadata.minIdle=2 jdbcmetadata.maxIdle=6 jdbcmetadata.validationQuery=select 1 ################################################################## # database SQLSERVER ################################################################## #jdbc.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver #jdbc.url=jdbc:sqlserver://:;databaseName= # es: jdbc.url=jdbc:sqlserver://192.168.0.99:1433;databaseName=geoweb #jdbc.username= #jdbc.password= #jdbc.maxActive=6 #jdbc.minIdle=2 #jdbc.maxIdle=6 #jdbc.validationQuery=select 1 # #jdbcmetadata.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver #jdbcmetadata.url=jdbc:sqlserver://:;databaseName= # es: jdbcmetadata.url=jdbc:sqlserver://192.168.0.99:1433;databaseName=geoweb #jdbcmetadata.username= #jdbcmetadata.password= #jdbcmetadata.maxActive=6 #jdbcmetadata.minIdle=2 #jdbcmetadata.maxIdle=6 #jdbcmetadata.validationQuery=select 1 ################################################################## # M O N G O D B ################################################################## # Convention: for each mongo.db_* use as value use this pattern: (since 4.4.0). # [DATABASE_NAME][SUFFIX] # available suffixes: [_BIM_MODELS,_CLASSIFICATION,_MNEMONIC_CODE] # # Example (if DATABASE_NAME=DB_NAME): # mongo.db_classification=DB_NAME_CLASSIFICATION mongo.db_bim_models=_BIM_MODELS mongo.db_classification=_CLASSIFICATION mongo.db_mnemonic_code=_MNEMONIC_CODE #mongo credentials. optional parameters (since 4.4.0) # # mongo.authentication optional, default null, allowed values: [SCRAM-SHA-1,MONGODB-X509,MONGODB-CR,GSSAPI,PLAIN] # mongo.password optional, default null. Depending on mongo.authentication value, password can be required or forbidden # when mongo.authentication value is SCRAM-SHA-1 or MONGODB-CR or PLAIN => password must be always configured # when mongo.authentication value is GSSAPI or MONGODB-X509 => password must be always omitted # mongo.username is always required if credentials are enabled # mongo.source is always required if credentials are enabled # Credentials are considered enabled if at least one of these parameter is configured. Geoweb will try to create the credentials for the # mongoClientFactoryBean bean mongo.source= mongo.username= mongo.password= mongo.authentication=SCRAM-SHA-1 #mongo.uri # optional, default null (since 4.4.0). It is alternative to both mongo.host and mongo.port and it has the evaluation priority upon them # Inside mongo.uri can be specified multiple host, eventually each one with it's port (default is 27017) # Inside mongo.uri can be specified some credentials. These credentials are used if the flag mongo.forceToUseURICredentials=true # In that case even the credentials deriving from mongo.username/mongo.password are overridden. # Inside mongo.uri can be specified some options: they are applied # Inside mongo.uri can be specified database # # mongo.uri pattern: # mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]] # # mongo.uri examples: # mongodb://localhost # mongodb://localhost1:27017 # mongodb://localhost1:27018 # mongodb://username:password@localhost:27017,localhost1,localhost2:27018 mongo.uri=mongodb://: #mongo.forceToUseURICredentials, evaluated only if mongo.uri is configured, default false (since 4.4.0) mongo.forceToUseURICredentials=false #mongo.host and mongo.port are alternative to mongo.uri #mongo.host= #mongo.port= ################################################################## # C M I S ################################################################## #ALFRESCO cmisUser=admin cmisPassword= cmisUrl=http://127.0.0.1:8081/alfresco/service/cmis #la cartella su Alfresco va creata manualmente accedendo ad Alfresco e posizionandola sotto lo spazio 'Sites/Siti' cmisBasePath=/Siti/Geoweb cmisType=alfresco #SHAREPOINT #cmisUser=geowebitalia\\sharepoint #cmisPassword=Shar3point$ #cmisUrl=http://winsharepoint/_vti_bin/cmis/rest?getRepositories #cmisBasePath=/ #cmisType=sharepoint ############################################################ # S E C U R I T Y ################################################################## # length of the time period (in days) for which password is valid - Periodo di validità delle password gwSecurity.passwordLifeTimeDays=180 # threshold to prohibit reuse of password up to a previous date - Numero minimo di password differenti prima del riutilizzo gwSecurity.passwordHistoricalCheckingCount=10 # threshold (in days) to prohibit the reuse of the password used from a date onwards gwSecurity.passwordHistoricalCheckingPeriodDays=1800 # (Account lockout threshold) number of invalid logon attempts that are allowed before an account is locked out. - Numero massimo di tentativi di accesso con password errata gwSecurity.maxAttempts=10 # Account locked time gwSecurity.accountLockedTimeMinutes=30 # rest token lifetime for reset password ('forget me') gwSecurity.tokenLifeTimeHours=24 # email forgot password - Subjet - password dimenticata gwSecurity.resetPasswordEmailSubjet=Ambiente di TEST GW4.4 - Impostazione/Ripristino Dati di Accesso # email forgot password - text message - params: {0: userEmail, 1: username, 2: reset_token, 3: resetUrl} # gwSecurity.resetPasswordEmailMessage=Gentile {1}\\,
per inserire una nuova password\\, clicca sul link sottostante:
{3}


Cordiali saluti\\,
Geowebitalia gwSecurity.resetPasswordEmailMessage=Gentile {1}\\,
E stata inviata una richiesta di impostazione o ripristino della password per il tuo account sul sistema GW4.4 on CDE.

Puoi ora accedere cliccando sul seguente collegamento o copiandolo e incollandolo nel browser:
{3}

Questo collegamento puo essere utilizzato per accedere una sola volta\\, verrai indirizzato a una pagina dove potrai impostare la tua password.
Scade dopo un giorno e non succede nulla se non viene utilizzato.


Cordiali saluti ################################################################## # C L I E N T P A S S W O R D R E G E X ################################################################## #gwClientPasswordRegex: regex applied to dijit/form/ValidationTextBox widget #gwClientPasswordRegex=^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-_]).{8\\,}$ #Minimum eight characters, at least one uppercase letter, one lowercase letter, one number and one special character: gwClientPasswordRegex=^(?=.*[a-z])(?=.*[A-Z])(?=.*\\\d)(?=.*[$@$!%*?&])[A-Za-z\\\d$@$!%*?&]{8\\,} #gwClientPasswordRegexPromptMessage: Tooltip text that appears when the text box is empty and on focus gwClientPasswordRegexPromptMessage=La password deve contenere almeno 8 caratteri di cui almeno una lettera maiuscola\\, almeno una lettera minuscola\\, almeno un numero\\, almeno un carattere speciale fra $!%*?& ##?!@$%^&-_ ################################################################## # A U T H E N T I C A T I O N ################################################################## #PRE AUTHENTICATION CREDENTIALS (optional) #Next two parameters, both optional, work in conjunction and maybe used to create a simplified authentication mechanism (if oauth2 is not possible, or not jet implemented, for example) #Every call to server will be considered allowed if contains in its headers section a parameter called SM_USER properly populated. #This parameter should be computed making the sha512 of the string resulting from the concatenation of preAuthUser and preAuthKey parameter, with a | character in the middle. #Here the pseudo code: # # var SM_USER = SHA512(preAuthUser+"|"+preAuthKey) # # Ex: # # SM_USER: 2ca0e5a3633f7c8306505d3c7edcdaac29c93ae689e0b1182c3da4bfdc763758745e7684926042b840d6beb193ffd4e11fa9d1d73d0bec43f42348cca4f2aedd # #preAuthUser=ws_test #preAuthKey=ws_test_1 #PRE AUTHENTICATED LOGOUT (optional) #By default if an user click logout button, Geoweb redirect him to login page. The behavior can be overridden setting this variable: user will be redirected at set url #preAuthenticated_logout_url=https://loginatla.gse.it/AGLogout ################################################################## # L O G O S C U S T O M I Z A T I O N ################################################################## #CUSTOM INDEX BACKGROUND PATH: WEB\; example: #images.IndexBackground=MyCostumImage.jpg #CUSTOM LOGIN LOGO PATH: WEB\IMAGES; example: #images.login.form.logo=MyCustomLogo.png #CUSTOM INDEX BACKGROUND PATH: WEB\; example: #images.bannerLeft=MyCustomBannerLeft.jpg #images.bannerCenter=MyCustomBannerCenter.png #images.bannerRight=MyCustomBannerRight.jpeg ===== Admin ===== #***************************************************************** # A D M I N # C O N F I G U R A T I O N P R O P E R T I E S # T E M P L A T E # # in order to configure you application, has to be changed the # sections between '<' and '>' characters #***************************************************************** ################################################################## # B A S E P A T H ################################################################## basePath=file:///C:/Projects//WEB/ ################################################################## # T E M P P A T H ################################################################## #used by umplugin, scene, report tempPath=C:/Project//WEB/ ################################################################## # F I L E S C O M P R E S S I O N ################################################################## #useCompressed: =false during development, =true when put in production useCompressed=true ################################################################## # M E T A D A T A C A C H E (WEBADMIN) ################################################################## #comma (,) separated client server address. Only one is the common case (no server cluster) urlList=http://localhost// ################################################################## # D A T A B A S E S ################################################################## ################################################################## # database ORACLE ################################################################## #jdbc.driverClassName=oracle.jdbc.driver.OracleDriver #jdbc.url=jdbc:oracle:thin:@:: # es: jdbc.url=jdbc:oracle:thin:@ora11dev.gruppoesc.it:1521:ORA11DEV #jdbc.username= #jdbc.password= #jdbc.maxActive=6 #jdbc.minIdle=2 #jdbc.maxIdle=6 #jdbc.validationQuery=select 1 from dual #jdbcmetadata.driverClassName=oracle.jdbc.driver.OracleDriver #jdbcmetadata.url=jdbc:oracle:thin:@:: #es: jdbcmetadata.url=jdbc:oracle:thin:@ora11dev.gruppoesc.it:1521:ORA11DEV #jdbcmetadata.username= #jdbcmetadata.password= #jdbcmetadata.maxActive=6 #jdbcmetadata.minIdle=2 #jdbcmetadata.maxIdle=6 #jdbcmetadata.validationQuery=select 1 from dual ################################################################## # database POSTGRES ################################################################## jdbc.driverClassName=org.postgresql.Driver jdbc.url=jdbc:postgresql://:/ # es: jdbc.url=jdbc:postgresql://127.0.0.1:5432/TEST_GW44 jdbc.username= jdbc.password= jdbc.maxActive=6 jdbc.minIdle=2 jdbc.maxIdle=6 jdbc.validationQuery=select 1 jdbcmetadata.driverClassName=org.postgresql.Driver jdbcmetadata.url=jdbc:postgresql://:/ # es: jdbcmetadata.url=jdbc:postgresql://127.0.0.1:5432/TEST_GW44 jdbcmetadata.username= jdbcmetadata.password= jdbcmetadata.maxActive=6 jdbcmetadata.minIdle=2 jdbcmetadata.maxIdle=6 jdbcmetadata.validationQuery=select 1 ################################################################## # database SQLSERVER ################################################################## #jdbc.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver #jdbc.url=jdbc:sqlserver://:;databaseName= # es: jdbc.url=jdbc:sqlserver://192.168.0.99:1433;databaseName=geoweb #jdbc.username= #jdbc.password= #jdbc.maxActive=6 #jdbc.minIdle=2 #jdbc.maxIdle=6 #jdbc.validationQuery=select 1 # #jdbcmetadata.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver #jdbcmetadata.url=jdbc:sqlserver://:;databaseName= # es: jdbcmetadata.url=jdbc:sqlserver://192.168.0.99:1433;databaseName=geoweb #jdbcmetadata.username= #jdbcmetadata.password= #jdbcmetadata.maxActive=6 #jdbcmetadata.minIdle=2 #jdbcmetadata.maxIdle=6 #jdbcmetadata.validationQuery=select 1 ############################################################ # S E C U R I T Y ################################################################## # length of the time period (in days) for which password is valid - Periodo di validità delle password gwSecurity.passwordLifeTimeDays=180 # threshold to prohibit reuse of password up to a previous date - Numero minimo di password differenti prima del riutilizzo gwSecurity.passwordHistoricalCheckingCount=10 # threshold (in days) to prohibit the reuse of the password used from a date onwards gwSecurity.passwordHistoricalCheckingPeriodDays=1800 # (Account lockout threshold) number of invalid login attempts that are allowed before an account is locked out. - Numero massimo di tentativi di accesso con password errata gwSecurity.maxAttempts=10 # Account locked time gwSecurity.accountLockedTimeMinutes=30 # rest token lifetime for reset password ('forget me') gwSecurity.tokenLifeTimeHours=24 # email forgot password - Subjet - password dimenticata gwSecurity.resetPasswordEmailSubjet=Richiesta cambio password # email forgot password - text message - params: {0: userEmail, 1: username, 2: reset_token, 3: resetUrl} # gwSecurity.resetPasswordEmailMessage=Gentile {1}\\,
per inserire una nuova password\\, clicca sul link sottostante:
{3}


Cordiali saluti\\,
Geowebitalia gwSecurity.resetPasswordEmailMessage=Gentile {1}\\,
E stata inviata una richiesta di impostazione o ripristino della password per il tuo account sul sistema GW4.

Puoi ora accedere cliccando sul seguente collegamento o copiandolo e incollandolo nel browser:
{3}

Questo collegamento puo essere utilizzato per accedere una sola volta\\, verrai indirizzato a una pagina dove potrai impostare la tua password.
Scade dopo un giorno e non succede nulla se non viene utilizzato.


Cordiali saluti ################################################################## # C L I E N T P A S S W O R D R E G E X ################################################################## #gwClientPasswordRegex: regex applied to dijit/form/ValidationTextBox widget (optional) #gwClientPasswordRegex=^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-_]).{8\\,}$ #Minimum eight characters, at least one uppercase letter, one lowercase letter, one number and one special character: gwClientPasswordRegex=^(?=.*[a-z])(?=.*[A-Z])(?=.*\\\d)(?=.*[$@$!%*?&])[A-Za-z\\\d$@$!%*?&]{8\\,} #gwClientPasswordRegexPromptMessage: Tooltip text that appears when the text box is empty and on focus (optional) #gwClientPasswordRegexPromptMessage=La password deve contenere almeno 8 caratteri di cui almeno una lettera maiuscola\\, almeno una lettera minuscola\\, almeno un numero\\, almeno un carattere speciale fra #?!@$%^&-_ gwClientPasswordRegexPromptMessage=La password deve contenere almeno 8 caratteri di cui almeno una lettera maiuscola\\, almeno una lettera minuscola\\, almeno un numero\\, almeno un carattere speciale fra $!%*?&# #?!@$%^&-_