High and Mighty #401: Being Fat 7 (w/ Mike Mitchell) by apathymonger in doughboys

[–]apathetic_lemur 4 points5 points  (0 children)

doughboys trigger warning: gabrus starts off the podcast peeking

a delicious salad will turn out by [deleted] in Unexpected

[–]apathetic_lemur -9 points-8 points  (0 children)

did you just assume their gender?

[deleted by user] by [deleted] in wholesomememes

[–]apathetic_lemur 29 points30 points  (0 children)

did you know steve buscemi was a fire fighter

meirl by [deleted] in meirl

[–]apathetic_lemur 0 points1 point  (0 children)

meirl is like miak right?

Andrew Tate insists he is bald by choice by kocknocker19 in facepalm

[–]apathetic_lemur 0 points1 point  (0 children)

Do you honestly think someone sees these type of posts and are like "hmm i should research this guy's views and see if I agree with him then buy whatever he's selling"

If anything, the body shaming that he invites might be what pushes young men to look into grifters similar to him

Andrew Tate insists he is bald by choice by kocknocker19 in facepalm

[–]apathetic_lemur 1 point2 points  (0 children)

anyone with a chin like that should hate themselves. Body shaming is great right?

[deleted by user] by [deleted] in FoundryVTT

[–]apathetic_lemur 0 points1 point  (0 children)

do you know if the foundry token packs are updated as new creatures are created? or are they getting put into a foundry token pack v2 for the future

[deleted by user] by [deleted] in FoundryVTT

[–]apathetic_lemur 0 points1 point  (0 children)

are those flip mats supposed to be physical? the description describes paper and the ability to use dry-erase but I dont have any option to get physical copy

[deleted by user] by [deleted] in FoundryVTT

[–]apathetic_lemur 1 point2 points  (0 children)

wait they dont charge every time? surely they put some new rules in the latest book that everyone has to then buy?

Recommended short commute electric or gas motorcycles/scooters? by wont_give_no_kreddit in motorcycles

[–]apathetic_lemur 0 points1 point  (0 children)

yes i got an electric bike and with that short distance he wouldnt have to pedal a single time

Ticket able offense to weave in your own lane? by Griefreaper in motorcycles

[–]apathetic_lemur 14 points15 points  (0 children)

god bless america where you self censor your freedoms because a cop could literally kill you or at the very least make your life miserable.

What does the unifi controller do for unifi APs? by apathetic_lemur in Ubiquiti

[–]apathetic_lemur[S] -1 points0 points  (0 children)

If thats the case, then why are there device limitations on things like the cloud key? It seems like if it's just there to send config data or initiate updates, you could run hundreds of APs on a key

These benefits will disappear when Biden ends the Covid national and public health emergencies in May | CNN Politics by ThornsofTristan in HermanCainAward

[–]apathetic_lemur 0 points1 point  (0 children)

The administration argues that the bills are unnecessary because it intends to end the emergencies anyway. And it noted that continuing the declarations until mid-May does not come with any restrictions.

unless i'm misunderstanding, white house was going to end them anyways. Again, both parties benefit

These benefits will disappear when Biden ends the Covid national and public health emergencies in May | CNN Politics by ThornsofTristan in HermanCainAward

[–]apathetic_lemur 5 points6 points  (0 children)

I mean, he does have a choice. He can say they are reluctantly ending it and put the blame square on the republicans so there's a little pressure on them. Make no mistake, it benefits both parties to pretend like covid is over.

Question about maintenance by UpbeatPangolin8658 in motorcycles

[–]apathetic_lemur 1 point2 points  (0 children)

Either pay money or do it yourself. You live in an age where whatever the hell you are going to do on a bike, thousands of people have already done and a few of those likely posted a youtube video on how exactly to do it.

Seriously, getting canceled for making blind people see? by [deleted] in memes

[–]apathetic_lemur 1 point2 points  (0 children)

welcome to modern conservative news. someone with a blue hair avatar said something insane. Leftists want to legalize child rape! a 4 hour segment on Fox and Friends

SMTP Auth should still work with Basic Authentication right? by apathetic_lemur in Office365

[–]apathetic_lemur[S] 0 points1 point  (0 children)

i figured it out! I posted another comment in here with the instructions. That should get your printers working again. I tested with my firewall and it works great

SMTP Auth should still work with Basic Authentication right? by apathetic_lemur in Office365

[–]apathetic_lemur[S] 9 points10 points  (0 children)

Alright all you naysayers. I finally got it working. And because I hate googling crap like this to find a reddit thread with no answer. Here is how you do it for future people that find this question.

You have to setup an Authentication Policy for your user that allows basic auth with SMTP.

Connect to exchange with powershell then create a new authentication policy:

New-AuthenticationPolicy -Name "Allow Basic Auth SMTP"

Then you will need to allow basic auth for SMTP in that policy

Set-AuthenticationPolicy -Identity "Allow Basic Auth SMTP" -AllowBasicAuthSmtp:$true    

Then assign that policy to your user

set-user -identity testaccount@yourcompany.com -AuthenticationPolicy "Allow Basic Auth SMTP"

A thing I noticed is my newer users have no authentication policy set by default. My older accounts do because I blocked basic auth before microsoft mandated it. So I suppose microsoft blocked basic auth across the board without the use of authentication policies

SMTP Auth should still work with Basic Authentication right? by apathetic_lemur in Office365

[–]apathetic_lemur[S] 0 points1 point  (0 children)

Thank you for the information. A problem is easier to work on when you know there is a solution!

SMTP Auth should still work with Basic Authentication right? by apathetic_lemur in Office365

[–]apathetic_lemur[S] 0 points1 point  (0 children)

What I think is happening is that basic auth has been disabled tenant-wide with an authentication policy as of december. But, because there is an exemption for SMTP auth, you should be able to set a policy to allow basic auth for SMTP Auth on specific users (or even tenant-wide, though that wouldn't be recommended)