Matthew Broadhead
Matthew Broadhead
it isn't returning anything. do i need to populate the virtuals somehow or is that done automatically? ```javascript const schema = new mongoose.Schema({ description: { type: String } }) schema.virtual('subitems',...
it worked, but more like this ```javascript const SubitemTC = composeWithMongoose(Subitem, customizationOptions); const ItemTC = composeWithMongoose(Item, customizationOptions); ItemTC.addFields({ subitems: { type: SubitemTC.NonNull.List, description: 'Sub items with a custom type', resolve:...
Examples are "07/Sep/2022:18:31:43 +0100", "07/Sep/2022:18:31:43 +0100" etc. It is the whole log file. I think my default locale should be `en-GB`. `-Djava.locale.providers=COMPAT,SPI` in `config/jvm.options` works. Thanks.
Providing `locale => "en-GB"` to the date filter does not seem to work in my case. UPDATE: `locale => "en"` DOES seem to work
i think this is a great idea. i already have my own dynamic dns running. i am sure i discussed this with sentora team in the past because their dns...
is this a copy of #258?
is there still no solution to this? sieve is sending emails from the wrong address
it seems to only happen when using SSL. i.e. after Sentora rewrites port 80 to 443 using Apache Config ``` ServerName domain.tld ServerAdmin [email protected] RewriteEngine on ReWriteCond %{SERVER_PORT} !^443$ RewriteRule...
this page https://httpd.apache.org/docs/2.4/rewrite/avoid.html recommends to use Redirect ``` ServerName www.example.com Redirect "/" "https://www.example.com/" ServerName www.example.com # ... SSL configuration goes here ```