Wednesday, January 31, 2024
dev@conference.yunohost.org
January
Mon Tue Wed Thu Fri Sat Sun
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
       
             

[08:01:11] <Yunohost Git/Infra notifications> [yunohost] 🔴 Pipeline [#1158432620](https://gitlab.com/yunohost/yunohost/-/pipelines/1158432620) failed on branch bookworm
[08:01:11] <Yunohost Git/Infra notifications> ✔️ Completed build for yunohost/12.0.0+202401310145 for bookworm/unstable/all.
[08:01:11] <Yunohost Git/Infra notifications> 🏗️ Starting build for yunohost/12.0.0+202401310145 for bookworm/unstable/all ...
[08:02:43] <Yunohost Git/Infra notifications> [yunohost] @alexAubin pushed 2 commits to bookworm ([ddbd36708554...b42778372129](https://github.com/YunoHost/yunohost/compare/ddbd36708554...b42778372129))
[08:02:43] <Yunohost Git/Infra notifications> [yunohost] 🔴 Pipeline [#1158449906](https://gitlab.com/yunohost/yunohost/-/pipelines/1158449906) failed on branch bookworm
[08:03:30] <Yunohost Git/Infra notifications> [yunohost/bookworm] Zgrombpf - Alexandre Aubin
[08:04:05] <Yunohost Git/Infra notifications> 🏗️ Starting build for yunohost/12.0.0+202401310230 for bookworm/unstable/all ...
[08:04:05] <Yunohost Git/Infra notifications> ✔️ Completed build for yunohost/12.0.0+202401310230 for bookworm/unstable/all.
[08:08:21] <Émy - OniriCorpe> waiting for the usual fail? :"3
[08:08:22] <Aleks (he/him/il/lui)> https://gitlab.com/yunohost/yunohost/-/pipelines/1158476868
[08:08:23] <Aleks (he/him/il/lui)> https://i.giphy.com/RBEUIVI6ey5Ta.webp
[08:08:28] <Émy - OniriCorpe> omg it's alive too!
[08:10:11] <Aleks (he/him/il/lui)> ¯\_(ツ)_/¯ It's totally green
[18:27:40] <anmol> Hi
[18:30:11] <anmol> I was using Snapy Email and realized that fail2ban is not banning Dovecot after many failed attempts.
[18:30:50] <anmol> Is it known or only happening to me?
[18:50:18] <anmol> So, Fail2ban ignores the Snapy mail's log with: INFO [dovecot] Ignore ::1 by ignoreself rule

[18:50:49] <anmol> Snapy mail should always be behind SSO.
[20:18:40] <Maranda> > <@Alekswag:matrix.org> omg ~_~
>
> ```
> if foobar then
> local foo = "bar"
> else
> local foo = "wut"
> end
> ```
>
> and then "foo" doesn't exist anymore outside the "if" because it's local to the if zzzzzz
>

Did you expect it to work differently? 😅
[20:22:19] <Maranda> How you declared made it scoped to the conditional statements' block. Otherwise you need to declare foo before the if statement
[20:27:50] <Maranda> Lua has 2 variable scopes, global and statement. local will scope and bind the variable to whatever construct statement it belongs to.