Dmytro
Dmytro
I had similar problem. Here is my html template: ``` :: ``` And the problem was same to what @alainib is described. I paused timer then unpause it later and...
@alainib make suer your "timer library" script looks same like [this](https://gist.github.com/scofield-ua/be86504308af31f699b3adf40081233c) and especially [this part](https://gist.github.com/scofield-ua/be86504308af31f699b3adf40081233c#file-angular-timer-js-L178-L185). Here is [demo with modified script](http://codepen.io/scofield-ua/pen/mOZpWP) and [with creator's script](http://codepen.io/scofield-ua/pen/eBwVmw).
I received such error. I had to rollback to v1.4.0. ``` (node:36) [DEP_WEBPACK_DEPRECATION_ARRAY_TO_SET] DeprecationWarning: chunk.files was changed from Array to Set (using Array method 'reduce' is deprecated) Error: Chunk.modulesSizeThere was...
@louis-lau what's the appropriate way to do it for now? For example, if I want to pass every new message to some other service, how should I do it without...
@louis-lau thanks for a quick response, by global do you mean something with a high load? I'm currently looking for a solution that will deal with a high load :)...
Yeah I'm looking into something global, currently I'm not sure how to just catch all emails for a specific domain(s), so I created a user with `*@domaim.com` address and trying...
Using user for global stuff it's the only method I found so far. Maybe there is some better solution for it which you can recommend? Because as far I know...
All I need it's accept the mail and pass it next to the application. > but if you want a single inbox for all mail of multiple domains, a single...
> What limitation is that? for example this one: https://github.com/nodemailer/wildduck/issues/319
I'm using this one: ```json { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:PutObject", "s3:PutObjectAcl", "s3:GetObject", "s3:GetObjectAcl", "s3:DeleteObject", "s3:ListMultipartUploadParts", "s3:AbortMultipartUpload", "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::bucket-name/*" ] }, {...